Skip to content

Commit

Permalink
More tweaks to texture setting comment
Browse files Browse the repository at this point in the history
Fixes #52890
  • Loading branch information
Tyriar committed Jun 26, 2018
1 parent 396ca1f commit 8adcb8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ configurationRegistry.registerConfiguration({
'default': false
},
'terminal.integrated.experimentalTextureCachingStrategy': {
'description': nls.localize('terminal.integrated.experimentalTextureCachingStrategy', "Controls how the terminal stores glyph textures. `static` is the default and uses a fixed image to draw the characters from. `dynamic` will draw the characters to the texture as they are needed, this should boost overall performance at the cost of slightly increased draw time the first time a character is drawn. `dynamic` will eventually become the default and this setting will be removed. Changes to this setting will only apply to new terminals."),
'description': nls.localize('terminal.integrated.experimentalTextureCachingStrategy', "Controls how the terminal stores glyph textures. `static` is the default and uses a fixed texture to draw the characters from. `dynamic` will draw the characters to the texture as they are needed, this should boost overall performance at the cost of slightly increased draw time the first time a character is drawn. `dynamic` will eventually become the default and this setting will be removed. Changes to this setting will only apply to new terminals."),
'type': 'string',
'enum': ['static', 'dynamic'],
'default': 'static'
Expand Down

0 comments on commit 8adcb8b

Please sign in to comment.