wined3d-1DTextures: 0001 fix wined3d_dummy_textures so it doesnt affect other patches

This commit is contained in:
gloriouseggroll 2018-02-20 18:13:17 -05:00
parent 139c48ff16
commit cf8a34a673

View File

@ -100,22 +100,22 @@ index 6e275e1cff..16626040f4 100644
checkGLcall("delete dummy textures");
diff --git a/dlls/wined3d/wined3d_private.h b/dlls/wined3d/wined3d_private.h
index 7a606a7a42..7aa69e163d 100644
index 7a606a7a42..ce563345f6 100644
--- a/dlls/wined3d/wined3d_private.h
+++ b/dlls/wined3d/wined3d_private.h
@@ -2862,11 +2862,13 @@ struct wined3d_state
@@ -2863,11 +2863,13 @@ struct wined3d_state
struct wined3d_dummy_textures
{
+ GLuint tex_1d;
GLuint tex_2d;
+ GLuint tex_1d;
GLuint tex_rect;
GLuint tex_3d;
GLuint tex_cube;
GLuint tex_cube_array;
+ GLuint tex_1d_array;
GLuint tex_2d_array;
+ GLuint tex_1d_array;
GLuint tex_buffer;
GLuint tex_2d_ms;
GLuint tex_2d_ms_array;
--
2.11.0