diff options
author | Marek Olšák <[email protected]> | 2012-12-03 16:24:59 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-12-07 14:19:29 +0100 |
commit | 919f788b92362676fa368d9950532f82f762cdfb (patch) | |
tree | 066584a0498ca4f9bc7d5430343f675a1951548f /src/gallium/state_trackers/glx | |
parent | 888714feb6fe9ff22221f4f8a6ed6abd904a2761 (diff) |
gallium: pass the current context to the flush_front state tracker function
I will later use the context to resolve an MSAA front buffer.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/glx')
-rw-r--r-- | src/gallium/state_trackers/glx/xlib/xm_st.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/glx/xlib/xm_st.c b/src/gallium/state_trackers/glx/xlib/xm_st.c index 7b54df5998c..a681e82fe01 100644 --- a/src/gallium/state_trackers/glx/xlib/xm_st.c +++ b/src/gallium/state_trackers/glx/xlib/xm_st.c @@ -253,7 +253,8 @@ xmesa_st_framebuffer_validate(struct st_framebuffer_iface *stfbi, * Called via st_framebuffer_iface::flush_front() */ static boolean -xmesa_st_framebuffer_flush_front(struct st_framebuffer_iface *stfbi, +xmesa_st_framebuffer_flush_front(struct st_context_iface *stctx, + struct st_framebuffer_iface *stfbi, enum st_attachment_type statt) { struct xmesa_st_framebuffer *xstfb = xmesa_st_framebuffer(stfbi); |