diff options
author | Laura Ekstrand <[email protected]> | 2015-03-03 15:05:16 -0800 |
---|---|---|
committer | Fredrik Höglund <[email protected]> | 2015-05-14 15:48:14 +0200 |
commit | 39be0c5f6c1922e2e2f3c4243dd8257c2e7deef8 (patch) | |
tree | 222302c4cb8ae05c325de568629baf032903e11c /src/mesa/main/blend.c | |
parent | 2cabfd9636a55f6adee04f4199ba83a39598d51c (diff) |
main: Refactor _mesa_get_clamp_read_color.
This wasn't neccessary for ARB_direct_state_access, but felt like a good idea
for the sake of completeness.
Reviewed-by: Fredrik Höglund <[email protected]>
Signed-off-by: Fredrik Höglund <[email protected]>
Diffstat (limited to 'src/mesa/main/blend.c')
-rw-r--r-- | src/mesa/main/blend.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/blend.c b/src/mesa/main/blend.c index 2342555a95d..d869fa2aa09 100644 --- a/src/mesa/main/blend.c +++ b/src/mesa/main/blend.c @@ -821,9 +821,10 @@ _mesa_get_clamp_vertex_color(const struct gl_context *ctx, } GLboolean -_mesa_get_clamp_read_color(const struct gl_context *ctx) +_mesa_get_clamp_read_color(const struct gl_context *ctx, + const struct gl_framebuffer *readFb) { - return get_clamp_color(ctx->ReadBuffer, ctx->Color.ClampReadColor); + return get_clamp_color(readFb, ctx->Color.ClampReadColor); } /** |