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:
authorJulian Eisel <julian@blender.org>2022-07-15 17:52:01 +0300
committerJulian Eisel <julian@blender.org>2022-07-15 17:52:01 +0300
commitc505f19efe3f476e1164b455817ad275fa913454 (patch)
tree1a63af7812a102060a926cbeacfe3335a727ecc6
parent1cf465bbc3312ae8eac3e1ae573b716e0fad92cf (diff)
Fix compiler error in debug builds after 1cf465bbc331
-rw-r--r--source/blender/gpu/intern/gpu_context.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_context.cc b/source/blender/gpu/intern/gpu_context.cc
index 9b0670da8cb..5ae020e45a4 100644
--- a/source/blender/gpu/intern/gpu_context.cc
+++ b/source/blender/gpu/intern/gpu_context.cc
@@ -247,7 +247,7 @@ bool GPU_backend_init_once()
void gpu_backend_delete_resources()
{
- BLI_assert(backend);
+ BLI_assert(g_backend);
g_backend->delete_resources();
}