DrawTest: Make setup method public.

This allows other tests to override it.
This commit is contained in:
Jeroen Bakker 2021-05-14 08:34:13 +02:00
parent 55b9b1ff50
commit 20c3db6604
1 changed files with 1 additions and 0 deletions

View File

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