aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-05-13 12:48:11 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-05-13 12:48:11 -0400
commit23f3b1471b2bbfe92252456f32c9ae55a9d1f213 (patch)
tree97f520b944aaa699854b745e182911615ce10c02 /main.cpp
parent0e24afb4cd060701348398b16f2b1d89b8935b81 (diff)
Things flash red when hit
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp24
1 files changed, 13 insertions, 11 deletions
diff --git a/main.cpp b/main.cpp
index a9138c7..9ff3689 100644
--- a/main.cpp
+++ b/main.cpp
@@ -76,6 +76,7 @@ GLint worldShader_attribute_coord;
GLint worldShader_attribute_tex;
GLint worldShader_uniform_texture;
GLint worldShader_uniform_transform;
+GLint worldShader_uniform_color;
// keeps a simple palette of colors for single-color draws
GLuint colorIndex;
@@ -214,21 +215,22 @@ int main(int argc, char *argv[]){
/**
* Creating the text shader and its attributes/uniforms
*/
- textShader = create_program("shaders/new.vert", "shaders/new.frag");
- textShader_attribute_coord = get_attrib(textShader, "coord2d");
- textShader_attribute_tex = get_attrib(textShader, "tex_coord");
- textShader_uniform_texture = get_uniform(textShader, "sampler");
- textShader_uniform_transform = get_uniform(textShader, "ortho");
- textShader_uniform_color = get_uniform(textShader, "tex_color");
+ textShader = create_program("shaders/new.vert", "shaders/new.frag");
+ textShader_attribute_coord = get_attrib(textShader, "coord2d");
+ textShader_attribute_tex = get_attrib(textShader, "tex_coord");
+ textShader_uniform_texture = get_uniform(textShader, "sampler");
+ textShader_uniform_transform = get_uniform(textShader, "ortho");
+ textShader_uniform_color = get_uniform(textShader, "tex_color");
/**
* Creating the world's shader and its attributes/uniforms
*/
- worldShader = create_program("shaders/world.vert", "shaders/world.frag");
- worldShader_attribute_coord = get_attrib(worldShader, "coord2d");
- worldShader_attribute_tex = get_attrib(worldShader, "tex_coord");
- worldShader_uniform_texture = get_uniform(worldShader, "sampler");
+ worldShader = create_program("shaders/world.vert", "shaders/world.frag");
+ worldShader_attribute_coord = get_attrib(worldShader, "coord2d");
+ worldShader_attribute_tex = get_attrib(worldShader, "tex_coord");
+ worldShader_uniform_texture = get_uniform(worldShader, "sampler");
worldShader_uniform_transform = get_uniform(worldShader, "ortho");
+ worldShader_uniform_color = get_uniform(worldShader, "tex_color");
//glEnable(GL_MULTISAMPLE);
@@ -387,7 +389,7 @@ void render() {
glUniform4f(textShader_uniform_color, 1.0, 1.0, 1.0, 1.0);
glUseProgram(worldShader);
glUniformMatrix4fv(worldShader_uniform_transform, 1, GL_FALSE, glm::value_ptr(ortho));
-
+ glUniform4f(worldShader_uniform_color, 1.0, 1.0, 1.0, 1.0);
/**************************
**** RENDER STUFF HERE ****
**************************/