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:
authorMike Erwin <significant.bit@gmail.com>2016-01-07 18:40:13 +0300
committerMike Erwin <significant.bit@gmail.com>2016-01-08 00:32:35 +0300
commit290b0a97ba6bf39d111a6dcb464fa44645648898 (patch)
treeda335c1e2c7f1659d50be0736149faee07de9d6c /source/blender/gpu
parent77641c28ef803a12fda3a60b0db82023bbdf83a3 (diff)
cleanup: OpenGL comment
Removed reference to GL 1.x since we no longer support that. ES is likely in our future though!
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/intern/gpu_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c
index 92195bdf779..2550a769b51 100644
--- a/source/blender/gpu/intern/gpu_draw.c
+++ b/source/blender/gpu/intern/gpu_draw.c
@@ -221,7 +221,7 @@ void GPU_render_text(
}
}
-/* Checking powers of two for images since opengl 1.x requires it */
+/* Checking powers of two for images since OpenGL ES requires it */
static bool is_power_of_2_resolution(int w, int h)
{