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_init_exit.c')
-rw-r--r--source/blender/gpu/intern/gpu_init_exit.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_init_exit.c b/source/blender/gpu/intern/gpu_init_exit.c
index fd99595b6a4..a93c1a21130 100644
--- a/source/blender/gpu/intern/gpu_init_exit.c
+++ b/source/blender/gpu/intern/gpu_init_exit.c
@@ -33,7 +33,7 @@
#include "GPU_init_exit.h" /* interface */
#include "intern/gpu_codegen.h"
-#include "intern/gpu_extensions_private.h"
+#include "intern/gpu_private.h"
/**
* although the order of initialization and shutdown should not matter
@@ -53,12 +53,15 @@ void GPU_init(void)
gpu_extensions_init(); /* must come first */
gpu_codegen_init();
+
+ GPU_DEBUG_INIT();
}
void GPU_exit(void)
{
+ GPU_DEBUG_EXIT();
gpu_codegen_exit();
gpu_extensions_exit(); /* must come last */