Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a942b560
Commit
a942b560
authored
Dec 03, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 05, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Transfer long types' enabling at file level.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
parent
3bfc4493
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
24 additions
and
1 deletion
+24
-1
Makefile.in
dlls/wined3d/Makefile.in
+0
-1
adapter_gl.c
dlls/wined3d/adapter_gl.c
+1
-0
adapter_vk.c
dlls/wined3d/adapter_vk.c
+1
-0
arb_program_shader.c
dlls/wined3d/arb_program_shader.c
+1
-0
ati_fragment_shader.c
dlls/wined3d/ati_fragment_shader.c
+1
-0
buffer.c
dlls/wined3d/buffer.c
+1
-0
context_gl.c
dlls/wined3d/context_gl.c
+1
-0
cs.c
dlls/wined3d/cs.c
+1
-0
device.c
dlls/wined3d/device.c
+1
-0
directx.c
dlls/wined3d/directx.c
+1
-0
glsl_shader.c
dlls/wined3d/glsl_shader.c
+1
-0
nvidia_texture_shader.c
dlls/wined3d/nvidia_texture_shader.c
+1
-0
palette.c
dlls/wined3d/palette.c
+1
-0
shader.c
dlls/wined3d/shader.c
+1
-0
shader_sm1.c
dlls/wined3d/shader_sm1.c
+1
-0
shader_sm4.c
dlls/wined3d/shader_sm4.c
+1
-0
state.c
dlls/wined3d/state.c
+1
-0
stateblock.c
dlls/wined3d/stateblock.c
+1
-0
surface.c
dlls/wined3d/surface.c
+1
-0
swapchain.c
dlls/wined3d/swapchain.c
+1
-0
texture.c
dlls/wined3d/texture.c
+1
-0
utils.c
dlls/wined3d/utils.c
+1
-0
vertexdeclaration.c
dlls/wined3d/vertexdeclaration.c
+1
-0
view.c
dlls/wined3d/view.c
+1
-0
wined3d_main.c
dlls/wined3d/wined3d_main.c
+1
-0
No files found.
dlls/wined3d/Makefile.in
View file @
a942b560
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
wined3d.dll
IMPORTLIB
=
wined3d
IMPORTS
=
$(VKD3D_PE_LIBS)
dxguid opengl32 user32 gdi32 advapi32
...
...
dlls/wined3d/adapter_gl.c
View file @
a942b560
...
...
@@ -20,6 +20,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include <stdio.h>
...
...
dlls/wined3d/adapter_vk.c
View file @
a942b560
...
...
@@ -15,6 +15,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/arb_program_shader.c
View file @
a942b560
...
...
@@ -26,6 +26,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include <stdio.h>
...
...
dlls/wined3d/ati_fragment_shader.c
View file @
a942b560
...
...
@@ -17,6 +17,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include <stdio.h>
...
...
dlls/wined3d/buffer.c
View file @
a942b560
...
...
@@ -21,6 +21,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/context_gl.c
View file @
a942b560
...
...
@@ -23,6 +23,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/cs.c
View file @
a942b560
...
...
@@ -15,6 +15,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/device.c
View file @
a942b560
...
...
@@ -23,6 +23,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/directx.c
View file @
a942b560
...
...
@@ -20,6 +20,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
#include "winternl.h"
...
...
dlls/wined3d/glsl_shader.c
View file @
a942b560
...
...
@@ -20,6 +20,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
/*
* D3D shader asm has swizzles on source parameters, and write masks for
...
...
dlls/wined3d/nvidia_texture_shader.c
View file @
a942b560
...
...
@@ -19,6 +19,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include <stdio.h>
...
...
dlls/wined3d/palette.c
View file @
a942b560
...
...
@@ -18,6 +18,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/shader.c
View file @
a942b560
...
...
@@ -21,6 +21,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include <stdio.h>
#include <string.h>
...
...
dlls/wined3d/shader_sm1.c
View file @
a942b560
...
...
@@ -21,6 +21,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/shader_sm4.c
View file @
a942b560
...
...
@@ -15,6 +15,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/state.c
View file @
a942b560
...
...
@@ -24,6 +24,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include <stdio.h>
...
...
dlls/wined3d/stateblock.c
View file @
a942b560
...
...
@@ -21,6 +21,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/surface.c
View file @
a942b560
...
...
@@ -25,6 +25,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/swapchain.c
View file @
a942b560
...
...
@@ -19,6 +19,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/texture.c
View file @
a942b560
...
...
@@ -19,6 +19,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/utils.c
View file @
a942b560
...
...
@@ -23,6 +23,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include <stdio.h>
...
...
dlls/wined3d/vertexdeclaration.c
View file @
a942b560
...
...
@@ -21,6 +21,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
...
...
dlls/wined3d/view.c
View file @
a942b560
...
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#include "wined3d_private.h"
#include "wined3d_shaders.h"
...
...
dlls/wined3d/wined3d_main.c
View file @
a942b560
...
...
@@ -21,6 +21,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#define VKD3D_NO_VULKAN_H
#define VKD3D_NO_WIN32_TYPES
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment