From 9e1ba1d6895ff1a80fe676e153799695653cfb2a Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Sat, 19 Jul 2014 10:09:28 -0400 Subject: gallium: add tessellation shader properties MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v2: Marek: rename tess spacing definitions Signed-off-by: Ilia Mirkin Reviewed-by: Roland Scheidegger Signed-off-by: Marek Olšák --- src/gallium/include/pipe/p_defines.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/gallium/include/pipe/p_defines.h') diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index d116aa5b8f8..8fabf5e0ff7 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -431,6 +431,13 @@ enum pipe_flush_flags #define PIPE_PRIM_MAX 15 +/** + * Tessellator spacing types + */ +#define PIPE_TESS_SPACING_FRACTIONAL_ODD 0 +#define PIPE_TESS_SPACING_FRACTIONAL_EVEN 1 +#define PIPE_TESS_SPACING_EQUAL 2 + /** * Query object types */ -- cgit v1.2.3