Skip to content
Snippets Groups Projects

Resolve "Voxel cone tracing"

Merged Ghost User requested to merge 82-voxel-cone-tracing into develop
3 files
+ 5
4
Compare changes
  • Side-by-side
  • Inline
Files
3
  • e0bd818e
    [#82] Add mipmapping to moment shadow mapping - still not convinced · e0bd818e
    Alexander Gauggel authored
@@ -21,7 +21,7 @@ void main(){
@@ -21,7 +21,7 @@ void main(){
if(any(greaterThanEqual(gl_GlobalInvocationID.xy, imageSize(outImage)))){
if(any(greaterThanEqual(gl_GlobalInvocationID.xy, imageSize(outImage)))){
return;
return;
}
}
ivec2 uv = ivec2(gl_GlobalInvocationID.xy);
ivec2 uv = ivec2(gl_GlobalInvocationID.xy);
float z = 0;
float z = 0;
for(int i = 0; i < msaaCount; i++){
for(int i = 0; i < msaaCount; i++){
Loading