From b659c412263f6dd7df962f7d42f4f51b7c3d5609 Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Wed, 2 May 2018 21:22:03 +0100 Subject: Implement diffuse texture loading and basic material support --- faqe.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'faqe.c') 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); -- cgit v1.2.3-70-g09d2