From 076edfe9d4b6cd39b6cf41b9f1d3e18688cc8673 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Sun, 13 Nov 2011 19:52:28 +0100 Subject: [PATCH] wined3d: Get rid of the winetexturestates typedef. --- dlls/wined3d/wined3d_private.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/wined3d/wined3d_private.h b/dlls/wined3d/wined3d_private.h index d36c0176a3f..a331f4e58a7 100644 --- a/dlls/wined3d/wined3d_private.h +++ b/dlls/wined3d/wined3d_private.h @@ -1841,7 +1841,8 @@ void resource_unload(struct wined3d_resource *resource) DECLSPEC_HIDDEN; /* Tests show that the start address of resources is 32 byte aligned */ #define RESOURCE_ALIGNMENT 16 -typedef enum winetexturestates { +enum wined3d_texture_state +{ WINED3DTEXSTA_ADDRESSU = 0, WINED3DTEXSTA_ADDRESSV = 1, WINED3DTEXSTA_ADDRESSW = 2, @@ -1854,7 +1855,7 @@ typedef enum winetexturestates { WINED3DTEXSTA_SRGBTEXTURE = 9, WINED3DTEXSTA_SHADOW = 10, MAX_WINETEXTURESTATES = 11, -} winetexturestates; +}; enum WINED3DSRGB { -- 2.11.4.GIT