diff options
author | Brian Paul <[email protected]> | 2009-12-10 14:54:57 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-12-10 14:54:57 -0700 |
commit | a67f39810b5c88367ae2a9ee564b1a740b27601b (patch) | |
tree | d5cc1843bfb11e73ce6ffe447de38416ecb636a4 /src/gallium/auxiliary/util/u_surface.h | |
parent | 721b5167dcb2558b4bd53e09fc33936feeb93744 (diff) |
gallium/util: added framebuffer compare, copy util funcs
Diffstat (limited to 'src/gallium/auxiliary/util/u_surface.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_surface.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_surface.h b/src/gallium/auxiliary/util/u_surface.h index ce84ed7ad06..a9da9aadcbb 100644 --- a/src/gallium/auxiliary/util/u_surface.h +++ b/src/gallium/auxiliary/util/u_surface.h @@ -66,4 +66,13 @@ util_destroy_rgba_surface(struct pipe_texture *texture, struct pipe_surface *surface); +extern boolean +util_framebuffer_state_equal(const struct pipe_framebuffer_state *dst, + const struct pipe_framebuffer_state *src); + +extern void +util_copy_framebuffer_state(struct pipe_framebuffer_state *dst, + const struct pipe_framebuffer_state *src); + + #endif /* U_SURFACE_H */ |