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:
authorClément Foucault <foucault.clem@gmail.com>2020-09-14 20:52:49 +0300
committerClément Foucault <foucault.clem@gmail.com>2020-09-14 21:53:34 +0300
commit2da4e2be0a445052e6b984e93c6d232b157d1436 (patch)
treeb04bfc20d6a7ab6b204de0f5ab568aee6a01cabf /source/blender/gpu/opengl/gl_context.hh
parent59a9cf46b485a00e42fcf93851ff3ed0ba6fe24d (diff)
Cleanup: GPUDebug: Use Vector instead of custom stack
Diffstat (limited to 'source/blender/gpu/opengl/gl_context.hh')
-rw-r--r--source/blender/gpu/opengl/gl_context.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/gpu/opengl/gl_context.hh b/source/blender/gpu/opengl/gl_context.hh
index 5cebc2a3f3e..66a3fdd3355 100644
--- a/source/blender/gpu/opengl/gl_context.hh
+++ b/source/blender/gpu/opengl/gl_context.hh
@@ -135,8 +135,8 @@ class GLContext : public Context {
void vao_cache_register(GLVaoCache *cache);
void vao_cache_unregister(GLVaoCache *cache);
- void debug_group_begin(const char *name, int index);
- void debug_group_end(void);
+ void debug_group_begin(const char *name, int index) override;
+ void debug_group_end(void) override;
private:
static void orphans_add(Vector<GLuint> &orphan_list, std::mutex &list_mutex, GLuint id);