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:
Diffstat (limited to 'source/blender/gpu/intern/gpu_state.c')
-rw-r--r--source/blender/gpu/intern/gpu_state.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/gpu/intern/gpu_state.c b/source/blender/gpu/intern/gpu_state.c
index 0f754e37b92..588d61640bd 100644
--- a/source/blender/gpu/intern/gpu_state.c
+++ b/source/blender/gpu/intern/gpu_state.c
@@ -132,22 +132,22 @@ void GPU_scissor(int x, int y, int width, int height)
glScissor(x, y, width, height);
}
-void GPU_scissor_getf(float coords[4])
+void GPU_scissor_get_f(float coords[4])
{
glGetFloatv(GL_SCISSOR_BOX, coords);
}
-void GPU_scissor_geti(int coords[4])
+void GPU_scissor_get_i(int coords[4])
{
glGetIntegerv(GL_SCISSOR_BOX, coords);
}
-void GPU_viewport_size_getf(float coords[4])
+void GPU_viewport_size_get_f(float coords[4])
{
glGetFloatv(GL_VIEWPORT, coords);
}
-void GPU_viewport_size_geti(int coords[4])
+void GPU_viewport_size_get_i(int coords[4])
{
glGetIntegerv(GL_VIEWPORT, coords);
}