aboutsummaryrefslogtreecommitdiffstats
path: root/faqe.c
diff options
context:
space:
mode:
Diffstat (limited to 'faqe.c')
-rw-r--r--faqe.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/faqe.c b/faqe.c
index 9567d1f..c13b4dc 100644
--- a/faqe.c
+++ b/faqe.c
@@ -36,7 +36,7 @@ int main(int argc, char **argv)
SDL_GLContext *glc;
GLuint prog;
struct {
- GLint model, view, proj;
+ GLint model, view, proj, tex;
} uni;
mat4x4 view;
FILE *cube_file;
@@ -84,9 +84,12 @@ int main(int argc, char **argv)
{ "model", &uni.model },
{ "view", &uni.view },
{ "proj", &uni.proj },
+ { "tex", &uni.tex },
{ 0 },
});
+ gl_uni_set1i(uni.tex, 0);
+
gl_prog_use(prog);
viewport(uni.proj, WIDTH, HEIGHT);