diff --git a/shaders/glsl/opmult.comp b/shaders/glsl/opmult.comp index 2da50470d..748ee16ff 100644 --- a/shaders/glsl/opmult.comp +++ b/shaders/glsl/opmult.comp @@ -21,9 +21,7 @@ void main() //valuesOutput[index] = valuesLhs[index] * valuesRhs[index]; // FOR TESTING - valuesOutput[index] = valuesLhs[index] + valuesRhs[index]; - valuesLhs[index] = 100 + index; - valuesRhs[index] = 100 + index; + valuesOutput[index] = valuesLhs[index] * valuesRhs[index]; } diff --git a/shaders/glsl/opmult.comp.spv b/shaders/glsl/opmult.comp.spv index f4d86116b..9f528214a 100755 Binary files a/shaders/glsl/opmult.comp.spv and b/shaders/glsl/opmult.comp.spv differ