diff options
author | Ilia Mirkin <[email protected]> | 2014-03-30 18:21:04 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-04-26 11:52:01 -0400 |
commit | 88d8d88d8c151ca1e8ec3af0caba16a4e34ca281 (patch) | |
tree | 58c1c29f2f1befeafb9a8e3cb0716dd070aa085c /src/gallium/include/pipe/p_context.h | |
parent | 3a2885fb268ebbc23cf1bceaad7e77ac06d85edb (diff) |
gallium: add basic support for ARB_sample_shading
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/include/pipe/p_context.h')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index bf27285c0f3..bc435308d2e 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -190,6 +190,9 @@ struct pipe_context { void (*set_sample_mask)( struct pipe_context *, unsigned sample_mask ); + void (*set_min_samples)( struct pipe_context *, + unsigned min_samples ); + void (*set_clip_state)( struct pipe_context *, const struct pipe_clip_state * ); |