tgsi: s/uint/enum pipe_shader_type/

Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
Brian Paul
2017-11-17 15:03:21 -07:00
parent fdee3e1d82
commit af322ed887
2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ tgsi_get_opcode_name( uint opcode )
const char *
tgsi_get_processor_name( uint processor )
tgsi_get_processor_name(enum pipe_shader_type processor)
{
switch (processor) {
case PIPE_SHADER_VERTEX:

View File

@@ -89,7 +89,7 @@ const char *
tgsi_get_opcode_name( uint opcode );
const char *
tgsi_get_processor_name( uint processor );
tgsi_get_processor_name(enum pipe_shader_type processor);
enum tgsi_opcode_type {
TGSI_TYPE_UNTYPED, /* for MOV */