summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/fbobject.c
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-05-05 15:02:20 +1000
committerTimothy Arceri <[email protected]>2017-05-11 13:53:39 +1000
commite618761233a07a350e4d4a24e38c8cf69ba9b6d3 (patch)
tree43a0d5a3bfb2979fc8ae8c52a4796c6696d3a6da /src/mesa/main/fbobject.c
parent0c67aa84568d4676017d0d309e5ba8832d3b9e1e (diff)
mesa: remove _mesa from static framebuffer object function
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r--src/mesa/main/fbobject.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c
index d486d01195f..ad49b0ebca4 100644
--- a/src/mesa/main/fbobject.c
+++ b/src/mesa/main/fbobject.c
@@ -285,8 +285,8 @@ get_attachment(struct gl_context *ctx, struct gl_framebuffer *fb,
* window-system framebuffer (not user-created framebuffer objects).
*/
static struct gl_renderbuffer_attachment *
-_mesa_get_fb0_attachment(struct gl_context *ctx, struct gl_framebuffer *fb,
- GLenum attachment)
+get_fb0_attachment(struct gl_context *ctx, struct gl_framebuffer *fb,
+ GLenum attachment)
{
assert(_mesa_is_winsys_fbo(fb));
@@ -3746,7 +3746,7 @@ _mesa_get_framebuffer_attachment_parameter(struct gl_context *ctx,
}
/* the default / window-system FBO */
- att = _mesa_get_fb0_attachment(ctx, buffer, attachment);
+ att = get_fb0_attachment(ctx, buffer, attachment);
}
else {
/* user-created framebuffer FBO */