summaryrefslogtreecommitdiff
path: root/test/testRenderOutput.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2022-12-29 23:25:25 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2022-12-29 23:25:25 +0000
commit94e99a5a9ded01e8184543b7ddf5cdfa39573ded (patch)
treeca6dd314da3c3d29fd8fc8d36f53d578c8c48be6 /test/testRenderOutput.h
parentAdd missing explicit on constructors (diff)
downloadilt-94e99a5a9ded01e8184543b7ddf5cdfa39573ded.tar.bz2
ilt-94e99a5a9ded01e8184543b7ddf5cdfa39573ded.tar.xz
ilt-94e99a5a9ded01e8184543b7ddf5cdfa39573ded.zip
Move test render helpers into a new test library
Diffstat (limited to 'test/testRenderOutput.h')
-rw-r--r--test/testRenderOutput.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/testRenderOutput.h b/test/testRenderOutput.h
new file mode 100644
index 0000000..0d97ef1
--- /dev/null
+++ b/test/testRenderOutput.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include "glArrays.h"
+#include <glm/vec2.hpp>
+
+class TestRenderOutput {
+public:
+ TestRenderOutput();
+ const glm::ivec2 size;
+ glFrameBuffer output;
+ glRenderBuffer depth;
+ glTexture outImage;
+};