Slight tweaks to how CMake interacts with VS Added small OpenGL testing class which draws over the raycasted image Going to use Gl to start helping with debug / enabling hybrid rendering
8 lines
91 B
GLSL
8 lines
91 B
GLSL
#version 330 core
|
|
|
|
out vec4 color;
|
|
|
|
void main() {
|
|
color = vec4(0.0f, 0.5f, 0.2f, 1.0f);
|
|
|
|
} |