aboutsummaryrefslogtreecommitdiff
path: root/src/shader/wrap/compute_shader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shader/wrap/compute_shader.h')
-rw-r--r--src/shader/wrap/compute_shader.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shader/wrap/compute_shader.h b/src/shader/wrap/compute_shader.h
index 816b925..f2ab182 100644
--- a/src/shader/wrap/compute_shader.h
+++ b/src/shader/wrap/compute_shader.h
@@ -1,6 +1,7 @@
#pragma once
#include <string>
+#include <vector>
#include <GL/glew.h>
@@ -28,6 +29,7 @@ public:
GLuint setUniform(const std::string& name, float x, float y) const;
GLuint setUniform(const std::string& name, unsigned int value) const;
- void workOn(GLuint bufferA, GLuint bufferB, GLuint bufferC) const;
+ void workOn(const std::vector<GLuint>& buffers) const;
+
void dispatch(GLuint nX, GLuint nY) const;
};