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:
authorCampbell Barton <ideasman42@gmail.com>2021-05-17 08:22:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-05-17 08:22:19 +0300
commit67c40cc51cafbf1e0abe8a05ae28765866aeab86 (patch)
tree57ce918c22b4c642b8e13df374bc57e8fbd95381 /source/blender/gpu
parent27c0d291382b74fe784c4799a01d255de8729e07 (diff)
Cleanup: missing declaration warning
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/opengl/gl_backend.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/opengl/gl_backend.cc b/source/blender/gpu/opengl/gl_backend.cc
index 9d9cc62c633..e7d67be6d0e 100644
--- a/source/blender/gpu/opengl/gl_backend.cc
+++ b/source/blender/gpu/opengl/gl_backend.cc
@@ -205,7 +205,7 @@ static bool detect_mip_render_workaround()
return enable_workaround;
}
-const char *gl_extension_get(int i)
+static const char *gl_extension_get(int i)
{
return (char *)glGetStringi(GL_EXTENSIONS, i);
}