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: ec0b15b611e6b600f40354e8fa0776bac61783a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 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 {
 public:
  void SetUp() override;
};

}  // namespace blender::draw