tgsi: Remove depricated ATTRIB interpolate mode.

This commit is contained in:
Michal Krol
2008-07-13 11:30:02 +02:00
parent 92d711e9e6
commit bd3b47590e
2 changed files with 2 additions and 2 deletions

View File

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

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
{