2021-05-14 07:55:01 +02:00
|
|
|
/* Apache License, Version 2.0 */
|
|
|
|
|
|
|
|
|
|
#include "gpu_testing.hh"
|
|
|
|
|
|
|
|
|
|
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 {
|
2021-05-14 08:34:13 +02:00
|
|
|
public:
|
2021-05-14 07:55:01 +02:00
|
|
|
void SetUp() override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace blender::draw
|