Modified CMake to now find and link GLEW

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
This commit is contained in:
MitchellHansen
2016-11-28 22:00:55 -08:00
parent 95ac8d4e5c
commit 5e58ade16f
7 changed files with 208 additions and 15 deletions

8
shaders/passthrough.frag Normal file
View File

@@ -0,0 +1,8 @@
#version 330 core
out vec4 color;
void main() {
color = vec4(0.0f, 0.5f, 0.2f, 1.0f);
}