Skip to content
Snippets Groups Projects

Resolve "Voxel cone tracing"

Merged Ghost User requested to merge 82-voxel-cone-tracing into develop
Compare and Show latest version
5 files
+ 97
8
Compare changes
  • Side-by-side
  • Inline
Files
5
#version 450
#extension GL_ARB_separate_shader_objects : enable
layout(location = 0) out vec3 outColor;
layout( push_constant ) uniform constants{
vec3 skyColor;
float skyStrength;
};
void main() {
outColor = skyColor * skyStrength;
}
\ No newline at end of file
Loading