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:
authorJeroen Bakker <jeroen@blender.org>2021-04-09 14:09:15 +0300
committerJeroen Bakker <jeroen@blender.org>2021-04-09 14:09:15 +0300
commit7ab8a3838c841ee0452420461de612d027b92e81 (patch)
treed2981e694c02acf749386dde249f0cf885f3fde3 /source/blender/gpu/tests
parent87bfa2b207b90b5e34ebd835a23c2a82afbed878 (diff)
Cleanup: use nullptr.
Diffstat (limited to 'source/blender/gpu/tests')
-rw-r--r--source/blender/gpu/tests/gpu_testing.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/tests/gpu_testing.cc b/source/blender/gpu/tests/gpu_testing.cc
index c193a19ad9c..b9fc78dc084 100644
--- a/source/blender/gpu/tests/gpu_testing.cc
+++ b/source/blender/gpu/tests/gpu_testing.cc
@@ -15,7 +15,7 @@ void GPUTest::SetUp()
GHOST_GLSettings glSettings = {0};
ghost_system = GHOST_CreateSystem();
ghost_context = GHOST_CreateOpenGLContext(ghost_system, glSettings);
- context = GPU_context_create(NULL);
+ context = GPU_context_create(nullptr);
GPU_init();
}