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-05-14 09:34:13 +0300
committerJeroen Bakker <jeroen@blender.org>2021-05-14 09:34:13 +0300
commit20c3db6604e8de49dc780201ce583041d017064d (patch)
tree4e19b5ab526b4807b64be9fd99e520846779f58f /source/blender/draw/tests
parent55b9b1ff507c524834ece73908f36ccf14928f63 (diff)
DrawTest: Make setup method public.
This allows other tests to override it.
Diffstat (limited to 'source/blender/draw/tests')
-rw-r--r--source/blender/draw/tests/draw_testing.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/draw/tests/draw_testing.hh b/source/blender/draw/tests/draw_testing.hh
index 3b91de007a2..ec0b15b611e 100644
--- a/source/blender/draw/tests/draw_testing.hh
+++ b/source/blender/draw/tests/draw_testing.hh
@@ -6,6 +6,7 @@ namespace blender::draw {
/* Base class for draw test cases. It will setup and tear down the GPU part around each test. */
class DrawTest : public blender::gpu::GPUTest {
+ public:
void SetUp() override;
};