Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/tests/draw_testing.hh
| /* Apache License, Version 2.0 */ | /* Apache License, Version 2.0 */ | ||||
| #include "gpu_testing.hh" | #include "gpu_testing.hh" | ||||
| namespace blender::draw { | namespace blender::draw { | ||||
| /* Base class for draw test cases. It will setup and tear down the GPU part around each test. */ | /* Base class for draw test cases. It will setup and tear down the GPU part around each test. */ | ||||
| class DrawTest : public blender::gpu::GPUTest { | class DrawTest : public blender::gpu::GPUTest { | ||||
| public: | public: | ||||
| void SetUp() override; | void SetUp() override; | ||||
| void TearDown() override; | |||||
| }; | }; | ||||
| } // namespace blender::draw | } // namespace blender::draw | ||||