aboutsummaryrefslogtreecommitdiff
path: root/window_texture.c
diff options
context:
space:
mode:
Diffstat (limited to 'window_texture.c')
-rw-r--r--window_texture.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/window_texture.c b/window_texture.c
index 7d5d4b9..ccd8947 100644
--- a/window_texture.c
+++ b/window_texture.c
@@ -152,9 +152,11 @@ int window_texture_on_resize(WindowTexture *self) {
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR );
glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR );
+ /*
float fLargest = 0.0f;
glGetFloatv(GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, &fLargest);
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAX_ANISOTROPY_EXT, fLargest);
+ */
glBindTexture(GL_TEXTURE_2D, 0);
@@ -167,9 +169,9 @@ int window_texture_on_resize(WindowTexture *self) {
cleanup:
if(texture_id != 0) glDeleteTextures(1, &texture_id);
- if(glx_pixmap) glXDestroyPixmap(self->display, self->glx_pixmap);
- if(glx_pixmap_bound) glXReleaseTexImageEXT(self->display, self->glx_pixmap, GLX_FRONT_EXT);
- if(pixmap) XFreePixmap(self->display, self->pixmap);
+ if(glx_pixmap) glXDestroyPixmap(self->display, glx_pixmap);
+ if(glx_pixmap_bound) glXReleaseTexImageEXT(self->display, glx_pixmap, GLX_FRONT_EXT);
+ if(pixmap) XFreePixmap(self->display, pixmap);
if(configs) XFree(configs);
return result;
}