From af5784312a1bb8079d2e1edffdb6d8f607029f9e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 8 Dec 2015 22:52:51 +1100 Subject: [PATCH] Correct recent OpenGL cleanup --- source/blender/editors/sculpt_paint/paint_cursor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/sculpt_paint/paint_cursor.c b/source/blender/editors/sculpt_paint/paint_cursor.c index a531a29f26a..f57255aff61 100644 --- a/source/blender/editors/sculpt_paint/paint_cursor.c +++ b/source/blender/editors/sculpt_paint/paint_cursor.c @@ -326,7 +326,7 @@ static int load_tex(Brush *br, ViewContext *vc, float zoom, bool col, bool prima GLenum internalformat = col ? GL_RGBA8 : GL_ALPHA8; if (!init || (target->old_col != col)) { - glTexImage2D(GL_TEXTURE_2D, 0, format, size, size, 0, format, GL_UNSIGNED_BYTE, buffer); + glTexImage2D(GL_TEXTURE_2D, 0, internalformat, size, size, 0, format, GL_UNSIGNED_BYTE, buffer); } else { glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, size, size, format, GL_UNSIGNED_BYTE, buffer);