summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/common/meta.h
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2015-11-12 09:26:41 -0800
committerIan Romanick <[email protected]>2016-02-10 10:59:50 -0800
commit4087c17832b737951280c7bf1977b589a88ec4cb (patch)
treef09fba58401721037ab05094614f5f5142e2dc78 /src/mesa/drivers/common/meta.h
parent47a5aa4bfa06e891f88e759008ee4e7129387d7e (diff)
meta/decompress: Track renderbuffer using gl_renderbuffer instead of GL API object handle
Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/drivers/common/meta.h')
-rw-r--r--src/mesa/drivers/common/meta.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/meta.h b/src/mesa/drivers/common/meta.h
index 3ff0fdddb59..7a120b6c44b 100644
--- a/src/mesa/drivers/common/meta.h
+++ b/src/mesa/drivers/common/meta.h
@@ -380,7 +380,8 @@ struct gen_mipmap_state
*/
struct decompress_fbo_state
{
- GLuint FBO, RBO;
+ struct gl_renderbuffer *rb;
+ GLuint FBO;
GLint Width, Height;
};