Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2013-08-06 18:55:00 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-08-06 18:55:00 +0400
commit0214dac604b15de6106cbe4da1411397b75d1504 (patch)
treea671bf0860ed913812846ff39ee99f4817a18406 /source/blender/makesrna/intern/rna_scene.c
parentad5025ea258b0c7645e7c0da6fe37f0252599f1f (diff)
Usual edits/fixes to new UI messages...
Diffstat (limited to 'source/blender/makesrna/intern/rna_scene.c')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 9e580b1626c..83dbd79024e 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -3145,14 +3145,14 @@ static void rna_def_scene_game_data(BlenderRNA *brna)
};
static EnumPropertyItem vsync_items[] = {
- {VSYNC_OFF, "OFF", 0, "Off", "Disables vsync"},
- {VSYNC_ON, "ON", 0, "On", "Enables vsync"},
- {VSYNC_ADAPTIVE, "ADAPTIVE", 0, "Adaptive", "Enables adaptive vsync (if supported)"},
+ {VSYNC_OFF, "OFF", 0, "Off", "Disable vsync"},
+ {VSYNC_ON, "ON", 0, "On", "Enable vsync"},
+ {VSYNC_ADAPTIVE, "ADAPTIVE", 0, "Adaptive", "Enable adaptive vsync (if supported)"},
{0, NULL, 0, NULL, NULL}
};
static EnumPropertyItem storage_items[] = {
- {RAS_STORE_AUTO, "AUTO", 0, "Auto Select", "Chooses the best supported mode"},
+ {RAS_STORE_AUTO, "AUTO", 0, "Auto Select", "Choose the best supported mode"},
{RAS_STORE_IMMEDIATE, "IMMEDIATE", 0, "Immediate Mode", "Slowest performance, requires OpenGL (any version)"},
{RAS_STORE_VA, "VERTEX_ARRAY", 0, "Vertex Arrays", "Better performance, requires at least OpenGL 1.1"},
#if 0 /* XXX VBOS are currently disabled since they cannot beat vertex array with display lists in performance. */