summaryrefslogtreecommitdiff
path: root/test/testRenderOutput.h
diff options
context:
space:
mode:
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;
+};