Browse Source

tgsi: Remove depricated ATTRIB interpolate mode.

tags/mesa_20090313
Michal Krol 17 years ago
parent
commit
bd3b47590e

+ 1
- 2
src/gallium/auxiliary/tgsi/util/tgsi_dump.c View File

@@ -119,8 +119,7 @@ static const char *TGSI_INTERPOLATES_SHORT[] =
{
"CONSTANT",
"LINEAR",
"PERSPECTIVE",
"ATTRIB"
"PERSPECTIVE"
};

static const char *TGSI_SEMANTICS[] =

+ 1
- 0
src/gallium/include/pipe/p_shader_tokens.h View File

@@ -75,6 +75,7 @@ enum tgsi_file_type {
#define TGSI_INTERPOLATE_CONSTANT 0
#define TGSI_INTERPOLATE_LINEAR 1
#define TGSI_INTERPOLATE_PERSPECTIVE 2
#define TGSI_INTERPOLATE_COUNT 3

struct tgsi_declaration
{

Loading…
Cancel
Save