Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a91d6e9e
Commit
a91d6e9e
authored
Sep 23, 2021
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 23, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opencl: Fix compilation on MSVC targets.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7f52277e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
make_opencl
dlls/opencl/make_opencl
+3
-3
opencl_types.h
dlls/opencl/opencl_types.h
+3
-3
No files found.
dlls/opencl/make_opencl
View file @
a91d6e9e
...
...
@@ -513,9 +513,9 @@ open(TYPES, ">$types_file") or die "cannot create $types_file";
print
TYPES
<<END
/* Automatically generated from OpenCL registry files; DO NOT EDIT! */
typedef int32_t
cl_int DECLSPEC_ALIGN(4)
;
typedef uint32_t
cl_uint DECLSPEC_ALIGN(4)
;
typedef uint64_t
cl_ulong DECLSPEC_ALIGN(8)
;
typedef int32_t
DECLSPEC_ALIGN(4) cl_int
;
typedef uint32_t
DECLSPEC_ALIGN(4) cl_uint
;
typedef uint64_t
DECLSPEC_ALIGN(8) cl_ulong
;
END
;
...
...
dlls/opencl/opencl_types.h
View file @
a91d6e9e
/* Automatically generated from OpenCL registry files; DO NOT EDIT! */
typedef
int32_t
cl_int
DECLSPEC_ALIGN
(
4
)
;
typedef
uint32_t
cl_uint
DECLSPEC_ALIGN
(
4
)
;
typedef
uint64_t
cl_ulong
DECLSPEC_ALIGN
(
8
)
;
typedef
int32_t
DECLSPEC_ALIGN
(
4
)
cl_int
;
typedef
uint32_t
DECLSPEC_ALIGN
(
4
)
cl_uint
;
typedef
uint64_t
DECLSPEC_ALIGN
(
8
)
cl_ulong
;
typedef
struct
_cl_platform_id
*
cl_platform_id
;
typedef
struct
_cl_device_id
*
cl_device_id
;
...
...
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