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-08-31 20:56:04 +0300
committerClément Foucault <foucault.clem@gmail.com>2020-09-01 01:30:36 +0300
commit058d29ed9a3e971049c0d9d99f1cf571bfb0efae (patch)
tree04e045feec7bd75728b4e3f49bd978ad5b0e1596 /source/blender/draw/tests
parent13b0a697a07e84abe5a62168ba75f38d325d3f22 (diff)
GHOST: Enable debug context on offscreen context too
This was a long standing TODO. This was also preventing debug callbacks form other context than the main window.
Diffstat (limited to 'source/blender/draw/tests')
-rw-r--r--source/blender/draw/tests/shaders_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/draw/tests/shaders_test.cc b/source/blender/draw/tests/shaders_test.cc
index b2f1020ed98..c991b791686 100644
--- a/source/blender/draw/tests/shaders_test.cc
+++ b/source/blender/draw/tests/shaders_test.cc
@@ -24,8 +24,9 @@ class DrawTest : public ::testing::Test {
void SetUp() override
{
+ GHOST_GLSettings glSettings = {0};
ghost_system = GHOST_CreateSystem();
- ghost_context = GHOST_CreateOpenGLContext(ghost_system);
+ ghost_context = GHOST_CreateOpenGLContext(ghost_system, glSettings);
context = GPU_context_create(0);
GPU_init();
DRW_draw_state_init_gtests(GPU_SHADER_CFG_DEFAULT);