summaryrefslogtreecommitdiff
path: root/games-sports/foobillard/files/foobillard-3.0a-gl-clamp.patch
blob: 3d185e8d27768923373676b323fe1850b2e5d097 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- a/src/table.c
+++ b/src/table.c
@@ -1214,8 +1214,8 @@
                           GL_UNSIGNED_BYTE, tabletexdata);
         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, options_tex_min_filter);
         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, options_tex_mag_filter);
-        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
-        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
+        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
+        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
         free( tabletexdata );
     } else {
         tabletexbind=0;