Skip to content
Snippets Groups Projects
Verified Commit 4404c342 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

Adjusted shaders to use less barriers

parent da59f0ce
No related branches found
No related tags found
1 merge request!103Added project wobble_bobble and refactored some parts of the framework
...@@ -18,9 +18,6 @@ void main() { ...@@ -18,9 +18,6 @@ void main() {
minimal.weight_sum = 1.0f; minimal.weight_sum = 1.0f;
barrier();
memoryBarrierBuffer();
ivec3 gridResolution = textureSize(sampler3D(gridImage, gridSampler), 0); ivec3 gridResolution = textureSize(sampler3D(gridImage, gridSampler), 0);
ivec3 gridWindow = ivec3(minimal.size * 2.0f * gridResolution); ivec3 gridWindow = ivec3(minimal.size * 2.0f * gridResolution);
...@@ -28,9 +25,6 @@ void main() { ...@@ -28,9 +25,6 @@ void main() {
int i, j, k; int i, j, k;
barrier();
memoryBarrierImage();
for (i = -gridWindow.x; i <= gridWindow.x; i++) { for (i = -gridWindow.x; i <= gridWindow.x; i++) {
for (j = -gridWindow.y; j <= gridWindow.y; j++) { for (j = -gridWindow.y; j <= gridWindow.y; j++) {
for (k = -gridWindow.z; k <= gridWindow.z; k++) { for (k = -gridWindow.z; k <= gridWindow.z; k++) {
...@@ -42,9 +36,6 @@ void main() { ...@@ -42,9 +36,6 @@ void main() {
} }
} }
barrier();
memoryBarrierBuffer();
if (weight_sum > 0.0f) { if (weight_sum > 0.0f) {
particles[gl_GlobalInvocationID.x].minimal.weight_sum = weight_sum; particles[gl_GlobalInvocationID.x].minimal.weight_sum = weight_sum;
} }
......
...@@ -93,9 +93,6 @@ void main() { ...@@ -93,9 +93,6 @@ void main() {
gridValue.xyz = mix(gridValue.xyz, -gridValue.xyz, collision); gridValue.xyz = mix(gridValue.xyz, -gridValue.xyz, collision);
barrier();
memoryBarrierShared();
imageStore( imageStore(
gridImage, gridImage,
ivec3(gl_GlobalInvocationID), ivec3(gl_GlobalInvocationID),
......
...@@ -24,9 +24,6 @@ layout( push_constant ) uniform constants { ...@@ -24,9 +24,6 @@ layout( push_constant ) uniform constants {
}; };
void main() { void main() {
memoryBarrierBuffer();
memoryBarrierImage();
float dts = dt * speedfactor; float dts = dt * speedfactor;
if (gl_GlobalInvocationID.x < particles.length()) { if (gl_GlobalInvocationID.x < particles.length()) {
...@@ -70,9 +67,6 @@ void main() { ...@@ -70,9 +67,6 @@ void main() {
} }
} }
barrier();
memoryBarrierBuffer();
mat3 mls_Q = mat3(0.0f); mat3 mls_Q = mat3(0.0f);
mat3 affine_C = mat3(0.0f); mat3 affine_C = mat3(0.0f);
...@@ -159,15 +153,9 @@ void main() { ...@@ -159,15 +153,9 @@ void main() {
} }
} }
barrier();
memoryBarrierBuffer();
particles[gl_GlobalInvocationID.x].minimal.position = position; particles[gl_GlobalInvocationID.x].minimal.position = position;
particles[gl_GlobalInvocationID.x].minimal.velocity = velocity_pic; particles[gl_GlobalInvocationID.x].minimal.velocity = velocity_pic;
particles[gl_GlobalInvocationID.x].deformation = mat4(F); particles[gl_GlobalInvocationID.x].deformation = mat4(F);
particles[gl_GlobalInvocationID.x].mls = mat4(mls_Q); particles[gl_GlobalInvocationID.x].mls = mat4(mls_Q);
} }
barrier();
memoryBarrierBuffer();
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment