Welcome to mirror list, hosted at ThFree Co, Russian Federation.

draw_testing.hh « tests « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b91de007a2b4cd0275195ebc7059d8b24b40b80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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 {
  void SetUp() override;
};

}  // namespace blender::draw