diff options
author | Lauri Kasanen <[email protected]> | 2012-01-24 21:37:07 +0200 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2012-02-02 16:42:06 -0500 |
commit | c5976017e31828dd67fb54e8c11b863fffcac70b (patch) | |
tree | b48166e7a8a84c0fa5d904ae31fed0a7c6d38e3c /src/gallium/auxiliary/postprocess/postprocess.h | |
parent | cd2e2187cb45accb13bf89ef297324332c46f379 (diff) |
gallium/postprocess: Fix depth logic
This prevents a possible lapse of the depth buffer - the situation where
the app and pp have different depth buffers.
NOTE: This is a candidate for the 8.0 stable branch.
Signed-off-by: Lauri Kasanen <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/postprocess/postprocess.h')
-rw-r--r-- | src/gallium/auxiliary/postprocess/postprocess.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/postprocess/postprocess.h b/src/gallium/auxiliary/postprocess/postprocess.h index ef94f79997a..dfa15f713ac 100644 --- a/src/gallium/auxiliary/postprocess/postprocess.h +++ b/src/gallium/auxiliary/postprocess/postprocess.h @@ -72,8 +72,7 @@ void pp_free(struct pp_queue_t *); void pp_free_fbos(struct pp_queue_t *); void pp_debug(const char *, ...); struct program *pp_init_prog(struct pp_queue_t *, struct pipe_screen *); -void pp_init_fbos(struct pp_queue_t *, unsigned int, unsigned int, - struct pipe_resource *); +void pp_init_fbos(struct pp_queue_t *, unsigned int, unsigned int); /* The filters */ |