Commit 167612ae authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

d3dcompiler: Remove shader_type typedef.

parent ab7fe608
...@@ -44,11 +44,11 @@ const char *debug_d3dcompiler_d3d_blob_part(D3D_BLOB_PART part) DECLSPEC_HIDDEN; ...@@ -44,11 +44,11 @@ const char *debug_d3dcompiler_d3d_blob_part(D3D_BLOB_PART part) DECLSPEC_HIDDEN;
const char *debug_d3dcompiler_shader_variable_class(D3D_SHADER_VARIABLE_CLASS c) DECLSPEC_HIDDEN; const char *debug_d3dcompiler_shader_variable_class(D3D_SHADER_VARIABLE_CLASS c) DECLSPEC_HIDDEN;
const char *debug_d3dcompiler_shader_variable_type(D3D_SHADER_VARIABLE_TYPE t) DECLSPEC_HIDDEN; const char *debug_d3dcompiler_shader_variable_type(D3D_SHADER_VARIABLE_TYPE t) DECLSPEC_HIDDEN;
/* Shader assembler definitions */ enum shader_type
typedef enum _shader_type { {
ST_VERTEX, ST_VERTEX,
ST_PIXEL, ST_PIXEL,
} shader_type; };
typedef enum BWRITER_COMPARISON_TYPE { typedef enum BWRITER_COMPARISON_TYPE {
BWRITER_COMPARISON_NONE, BWRITER_COMPARISON_NONE,
...@@ -111,7 +111,7 @@ struct samplerdecl { ...@@ -111,7 +111,7 @@ struct samplerdecl {
#define INSTRARRAY_INITIAL_SIZE 8 #define INSTRARRAY_INITIAL_SIZE 8
struct bwriter_shader { struct bwriter_shader {
shader_type type; enum shader_type type;
/* Shader version selected */ /* Shader version selected */
DWORD version; DWORD version;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment