Module: wine Branch: master Commit: 53f747de1b987f14c52b214c89f9ad8e32de9baf URL: http://source.winehq.org/git/wine.git/?a=commit;h=53f747de1b987f14c52b214c89...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Fri Aug 30 08:42:45 2013 +0200
wined3d: Move the WINED3D_MAX_FBO_ENTRIES constant to context.c.
---
dlls/wined3d/context.c | 2 ++ dlls/wined3d/wined3d_private.h | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wined3d/context.c b/dlls/wined3d/context.c index cd1cfd4..e8a5a83 100644 --- a/dlls/wined3d/context.c +++ b/dlls/wined3d/context.c @@ -33,6 +33,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(d3d); WINE_DECLARE_DEBUG_CHANNEL(d3d_perf); WINE_DECLARE_DEBUG_CHANNEL(d3d_synchronous);
+#define WINED3D_MAX_FBO_ENTRIES 64 + static DWORD wined3d_context_tls_idx;
/* FBO helper functions */ diff --git a/dlls/wined3d/wined3d_private.h b/dlls/wined3d/wined3d_private.h index 05a6250..c111e73 100644 --- a/dlls/wined3d/wined3d_private.h +++ b/dlls/wined3d/wined3d_private.h @@ -1014,8 +1014,6 @@ enum fogsource { FOGSOURCE_COORD, };
-#define WINED3D_MAX_FBO_ENTRIES 64 - struct wined3d_occlusion_query { struct list entry;