From: Steinar H. Gunderson Date: Mon, 1 Oct 2012 18:45:21 +0000 (+0200) Subject: Remove the now obsolete load_texture(). X-Git-Tag: 1.0~455 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=0b2a4dc36bc5d5ca31797b47d99ee8ade243f86c;hp=affe96389941123d20354ad8091977aa196a741c Remove the now obsolete load_texture(). --- diff --git a/main.cpp b/main.cpp index 0382bdb..569c67d 100644 --- a/main.cpp +++ b/main.cpp @@ -119,24 +119,6 @@ unsigned char *load_image(const char *filename, unsigned *w, unsigned *h) return dst_pixels; } -void load_texture(const char *filename) -{ - unsigned w, h; - unsigned char *pixels = load_image(filename, &w, &h); - -#if 1 - // we will convert to sRGB in the shader - glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, w, h, 0, GL_RGB, GL_UNSIGNED_BYTE, pixels); - check_error(); -#else - // implicit sRGB conversion in hardware - glTexImage2D(GL_TEXTURE_2D, 0, GL_SRGB8, w, h, 0, GL_RGB, GL_UNSIGNED_BYTE, pixels); - check_error(); -#endif - - free(pixels); -} - void write_ppm(const char *filename, unsigned char *screenbuf) { FILE *fp = fopen(filename, "w"); @@ -192,10 +174,6 @@ int main(int argc, char **argv) //glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_BASE_LEVEL, 4); //check_error(); - //load_texture("maserati_gts_wallpaper_1280x720_01.jpg"); - //load_texture("90630d1295075297-console-games-wallpapers-wallpaper_need_for_speed_prostreet_09_1920x1080.jpg"); - //load_texture("glacier-lake-1280-720-4087.jpg"); - #if 0 // sRGB reverse LUT glBindTexture(GL_TEXTURE_1D, SRGB_REVERSE_LUT);