Cleanup: use nullptr.

This commit is contained in:
Jeroen Bakker 2021-04-09 13:09:15 +02:00
parent 87bfa2b207
commit 7ab8a3838c
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}