aboutsummaryrefslogtreecommitdiff
path: root/BuddhaTest/include
diff options
context:
space:
mode:
Diffstat (limited to 'BuddhaTest/include')
-rw-r--r--BuddhaTest/include/Helpers.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/BuddhaTest/include/Helpers.h b/BuddhaTest/include/Helpers.h
index 05ad151..c24e2c7 100644
--- a/BuddhaTest/include/Helpers.h
+++ b/BuddhaTest/include/Helpers.h
@@ -1,9 +1,12 @@
#pragma once
#include <glad/glad.h>
#include <GLFW/glfw3.h>
+#include <vector>
namespace Helpers
{
GLuint LoadShaders(const char * vertex_file_path, const char * fragment_file_path);
GLuint LoadComputeShader(const char * compute_file_path);
-} \ No newline at end of file
+
+ void WriteOutputPNG(const std::vector<uint32_t>& data, unsigned int width, unsigned int height);
+}