aboutsummaryrefslogtreecommitdiff
path: root/src/shader/code/stream.glsl
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-12-16 13:58:20 +0100
committerAdrian Kummerlaender2018-12-16 13:58:20 +0100
commit2eb7f9925315989735b4fb746cbd7bda6c9bd5bb (patch)
tree67e94d6898eac507a8a7c2c6cccf7f875f2979dc /src/shader/code/stream.glsl
parent44f5ac32a68a617f93704d44c4339f7db13b323e (diff)
downloadcompustream-2eb7f9925315989735b4fb746cbd7bda6c9bd5bb.tar
compustream-2eb7f9925315989735b4fb746cbd7bda6c9bd5bb.tar.gz
compustream-2eb7f9925315989735b4fb746cbd7bda6c9bd5bb.tar.bz2
compustream-2eb7f9925315989735b4fb746cbd7bda6c9bd5bb.tar.lz
compustream-2eb7f9925315989735b4fb746cbd7bda6c9bd5bb.tar.xz
compustream-2eb7f9925315989735b4fb746cbd7bda6c9bd5bb.tar.zst
compustream-2eb7f9925315989735b4fb746cbd7bda6c9bd5bb.zip
Parametrize lattice resolution
Diffstat (limited to 'src/shader/code/stream.glsl')
-rw-r--r--src/shader/code/stream.glsl22
1 files changed, 18 insertions, 4 deletions
diff --git a/src/shader/code/stream.glsl b/src/shader/code/stream.glsl
index 7dd5ba8..147b49b 100644
--- a/src/shader/code/stream.glsl
+++ b/src/shader/code/stream.glsl
@@ -2,29 +2,43 @@ static const std::string STREAM_SHADER_CODE = R"(
#version 430
layout (local_size_x = 1, local_size_y = 1) in;
+
layout (std430, binding=1) buffer bufferCollide{ float collideCells[]; };
layout (std430, binding=2) buffer bufferStream{ float streamCells[]; };
+uniform uint nX;
+uniform uint nY;
+
+const uint q = 9;
+
float get(uint x, uint y, int i, int j) {
- return collideCells[9*128*y + 9*x + (i+1)*3 + j+1];
+ return collideCells[q*nX*y + q*x + (i+1)*3 + j+1];
}
void set(uint x, uint y, int i, int j, float v) {
- streamCells[9*128*y + 9*x + (i+1)*3 + j+1] = v;
+ streamCells[q*nX*y + q*x + (i+1)*3 + j+1] = v;
}
void main() {
const uint x = gl_GlobalInvocationID.x;
const uint y = gl_GlobalInvocationID.y;
- if ( x != 0 && x != 128-1 && y != 0 && y != 128-1 ) {
+ if ( x != 0 && x != nX-1 && y != 0 && y != nY-1 ) {
for ( int i = -1; i <= 1; ++i ) {
for ( int j = -1; j <= 1; ++j ) {
set(x+i,y+j,i,j, get(x,y,i,j));
}
}
} else {
-
+ for ( int i = -1; i <= 1; ++i ) {
+ for ( int j = -1; j <= 1; ++j ) {
+ if ( (x > 0 || i >= 0) && x+i <= nX-1 && (y > 0 || j >= 0) && y+j <= nY-1 ) {
+ set(x+i,y+j,i,j, get(x,y,i,j));
+ } else {
+ set(x,y,i*(-1),j*(-1), get(x,y,i,j));
+ }
+ }
+ }
}
}
)";