mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
tgsi: s/uint/enum pipe_shader_type/
Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
parent
fdee3e1d82
commit
af322ed887
2 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue