summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilrik de Loose <wilrik@wilrik.nl>2008-01-08 15:52:28 (GMT)
committerWilrik de Loose <wilrik@wilrik.nl>2008-01-08 15:52:28 (GMT)
commitc8e37eae0f1e10547c3b347182fb105f0e43b8d7 (patch)
treeffa49b90270dd44ac0e18b1ffef88ae100413231
parenteffb3d7b3c795d3e59ebba01e97cff42bbc0ea86 (diff)
download2iv35-c8e37eae0f1e10547c3b347182fb105f0e43b8d7.zip
2iv35-c8e37eae0f1e10547c3b347182fb105f0e43b8d7.tar.gz
2iv35-c8e37eae0f1e10547c3b347182fb105f0e43b8d7.tar.bz2
-rw-r--r--Smoke/Week 2.suobin64512 -> 66048 bytes
-rw-r--r--Smoke/Week 2.vcproj10
-rw-r--r--Smoke/renderer_gl.c5
3 files changed, 8 insertions, 7 deletions
diff --git a/Smoke/Week 2.suo b/Smoke/Week 2.suo
index 613c8ba..6d38775 100644
--- a/Smoke/Week 2.suo
+++ b/Smoke/Week 2.suo
Binary files differ
diff --git a/Smoke/Week 2.vcproj b/Smoke/Week 2.vcproj
index 54a5b44..d9b7680 100644
--- a/Smoke/Week 2.vcproj
+++ b/Smoke/Week 2.vcproj
@@ -63,7 +63,7 @@
/>
<Tool
Name="VCLinkerTool"
- AdditionalDependencies="&quot;gtkglext-win32-1.0.lib gdkglext-win32-1.0.lib glu32.lib opengl32.lib user32.lib kernel32.lib gtk-win32-2.0.lib gdk-win32-2.0.lib gdi32.lib imm32.lib shell32.lib ole32.lib atk-1.0.lib gdk_pixbuf-2.0.lib pangowin32-1.0.lib pangocairo-1.0.lib cairo.lib pangoft2-1.0.lib fontconfig.lib freetype.lib z.lib pango-1.0.lib gobject-2.0.lib gmodule-2.0.lib glib-2.0.lib Glaux.lib"
+ AdditionalDependencies="&quot;gtkglext-win32-1.0.lib gdkglext-win32-1.0.lib glu32.lib opengl32.lib user32.lib kernel32.lib gtk-win32-2.0.lib gdk-win32-2.0.lib gdi32.lib imm32.lib shell32.lib ole32.lib atk-1.0.lib gdk_pixbuf-2.0.lib pangowin32-1.0.lib pangocairo-1.0.lib cairo.lib pangoft2-1.0.lib fontconfig.lib freetype.lib z.lib pango-1.0.lib gobject-2.0.lib gmodule-2.0.lib glib-2.0.lib"
OutputFile="$(OutDir)/Week 2.exe"
LinkIncremental="2"
AdditionalLibraryDirectories="D:\GTK\lib"
@@ -974,19 +974,19 @@
>
</File>
<File
- RelativePath="fftw-2.1.3\fftw\Makefile.am"
+ RelativePath="fftw-2.1.3\rfftw\Makefile.am"
>
</File>
<File
- RelativePath="fftw-2.1.3\rfftw\Makefile.am"
+ RelativePath="fftw-2.1.3\fftw\Makefile.am"
>
</File>
<File
- RelativePath="fftw-2.1.3\rfftw\Makefile.in"
+ RelativePath="fftw-2.1.3\fftw\Makefile.in"
>
</File>
<File
- RelativePath="fftw-2.1.3\fftw\Makefile.in"
+ RelativePath="fftw-2.1.3\rfftw\Makefile.in"
>
</File>
<File
diff --git a/Smoke/renderer_gl.c b/Smoke/renderer_gl.c
index 75c1514..795d4f2 100644
--- a/Smoke/renderer_gl.c
+++ b/Smoke/renderer_gl.c
@@ -337,9 +337,10 @@ GLuint LoadTextures(char *filename)
glGenTextures(1, &texture);
glBindTexture(GL_TEXTURE_2D, texture);
-// gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGB, width, height, GL_BGR, GL_UNSIGNED_BYTE, imagedata);
+ gluBuild2DMipmaps(GL_TEXTURE_2D, GL_RGB, width, height, GL_RGB, GL_UNSIGNED_BYTE, imagedata);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
+ return_value = texture;
free(imagedata);
}
@@ -829,7 +830,7 @@ void renderer_init_gl(void)
float LightDiffuse[] = { 0.50f, 0.50f, 0.50f, 0.00f }; // Diffuse light values
float LightPosition[] = { -250.0f, -250.0f, -300.0f, 1.00f }; // Position of the light source
- glEnable(GL_TEXTURE_2D);
+ //glEnable(GL_TEXTURE_2D);
glShadeModel(GL_SMOOTH);
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);