Module: Mesa Branch: 10.2 Commit: 7ffc8556ca81976fe4f92cda5253b1685149748a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7ffc8556ca81976fe4f92cda5253b1685149748a
Author: José Fonseca <[email protected]> Date: Fri May 23 11:23:52 2014 +0100 mesa: Move declaration to top of block. To fix MSVC build. Trivial. (cherry picked from commit c98b704128ed450b46c61e139d9f17c652a74c09) --- src/mesa/drivers/common/meta_blit.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mesa/drivers/common/meta_blit.c b/src/mesa/drivers/common/meta_blit.c index 58492e0..0de830c 100644 --- a/src/mesa/drivers/common/meta_blit.c +++ b/src/mesa/drivers/common/meta_blit.c @@ -325,10 +325,12 @@ setup_glsl_blit_framebuffer(struct gl_context *ctx, struct gl_renderbuffer *src_rb, GLenum target) { + unsigned texcoord_size; + /* target = GL_TEXTURE_RECTANGLE is not supported in GLES 3.0 */ assert(_mesa_is_desktop_gl(ctx) || target == GL_TEXTURE_2D); - unsigned texcoord_size = 2 + (src_rb->Depth > 1 ? 1 : 0); + texcoord_size = 2 + (src_rb->Depth > 1 ? 1 : 0); _mesa_meta_setup_vertex_objects(&blit->VAO, &blit->VBO, true, 2, texcoord_size, 0); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
