diff options
author | Brian Paul <[email protected]> | 2010-08-22 19:34:53 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-08-22 19:40:26 -0600 |
commit | 24bd9780bcf400a00f6fc5a89b1648c7e3b7df07 (patch) | |
tree | b35f7e6667d3c4667e9dbc016158af3c33dc3b51 /src/mesa/state_tracker/st_cb_fbo.h | |
parent | 428a3cd2d537a42c8a01765a5a53dca139e07443 (diff) |
st/mesa: added st_is_depth_stencil_combined() function
This code is part of a patch by Marek Olšák.
Diffstat (limited to 'src/mesa/state_tracker/st_cb_fbo.h')
-rw-r--r-- | src/mesa/state_tracker/st_cb_fbo.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_fbo.h b/src/mesa/state_tracker/st_cb_fbo.h index 62a9bbcb25f..3e9815c1b13 100644 --- a/src/mesa/state_tracker/st_cb_fbo.h +++ b/src/mesa/state_tracker/st_cb_fbo.h @@ -88,4 +88,9 @@ st_get_renderbuffer_sampler_view(struct st_renderbuffer *rb, struct pipe_context *pipe); +extern GLboolean +st_is_depth_stencil_combined(const struct gl_renderbuffer_attachment *depth, + const struct gl_renderbuffer_attachment *stencil); + + #endif /* ST_CB_FBO_H */ |