aboutsummaryrefslogtreecommitdiff
path: root/BuddhaTest/include/Helpers.h
diff options
context:
space:
mode:
authorAndreas Grois <andi@grois.info>2018-03-10 13:31:14 +0100
committerAndreas Grois <andi@grois.info>2018-03-10 13:31:14 +0100
commit01b47b49462a3b6ade6e8819edad9f2455fe1143 (patch)
tree231f371cec8d2c7d1afb5824fe60a615ec1bbbc6 /BuddhaTest/include/Helpers.h
parent61fe316a2cfd3b99008ec220c613f1e0c33b0190 (diff)
Make local work group size tweakable. (Not yet exposed to user)
Diffstat (limited to 'BuddhaTest/include/Helpers.h')
-rw-r--r--BuddhaTest/include/Helpers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/BuddhaTest/include/Helpers.h b/BuddhaTest/include/Helpers.h
index ad14305..8c897d5 100644
--- a/BuddhaTest/include/Helpers.h
+++ b/BuddhaTest/include/Helpers.h
@@ -7,7 +7,7 @@
namespace Helpers
{
GLuint LoadShaders(const char * vertex_file_path, const char * fragment_file_path);
- GLuint LoadComputeShader(const char * compute_file_path);
+ GLuint LoadComputeShader(const char * compute_file_path, unsigned int localSizeX, unsigned int localSizeY, unsigned int localSizeZ);
void WriteOutputPNG(const std::vector<uint32_t>& data, unsigned int width, unsigned int height);