mesa: move GET_CURRENT_CONTEXT() to top of _mesa_init_renderbuffer()

To fix MSVC build.

Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Brian Paul 2015-01-15 15:30:40 -07:00
parent e407fb1af4
commit 337eca4ac8

View file

@ -38,6 +38,8 @@
void
_mesa_init_renderbuffer(struct gl_renderbuffer *rb, GLuint name)
{
GET_CURRENT_CONTEXT(ctx);
mtx_init(&rb->Mutex, mtx_plain);
rb->ClassID = 0;
@ -64,7 +66,6 @@ _mesa_init_renderbuffer(struct gl_renderbuffer *rb, GLuint name)
* specs. If the context is not current, we cannot determine the
* API, so default to GL_RGBA.
*/
GET_CURRENT_CONTEXT(ctx);
if (ctx && _mesa_is_gles3(ctx)) {
rb->InternalFormat = GL_RGBA4;
} else {