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
b36eab11
Commit
b36eab11
authored
Dec 07, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 07, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Enable long types in adapter_gl.c.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
parent
f96630f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
11 deletions
+10
-11
adapter_gl.c
dlls/wined3d/adapter_gl.c
+10
-11
No files found.
dlls/wined3d/adapter_gl.c
View file @
b36eab11
...
...
@@ -20,7 +20,6 @@
* 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>
...
...
@@ -291,15 +290,15 @@ static BOOL wined3d_caps_gl_ctx_create_attribs(struct wined3d_caps_gl_ctx *caps_
if
(
!
wglMakeCurrent
(
caps_gl_ctx
->
dc
,
new_ctx
))
{
ERR
(
"Failed to make new context current, last error %#x.
\n
"
,
GetLastError
());
ERR
(
"Failed to make new context current, last error %#
l
x.
\n
"
,
GetLastError
());
if
(
!
wglDeleteContext
(
new_ctx
))
ERR
(
"Failed to delete new context, last error %#x.
\n
"
,
GetLastError
());
ERR
(
"Failed to delete new context, last error %#
l
x.
\n
"
,
GetLastError
());
gl_info
->
p_wglCreateContextAttribsARB
=
NULL
;
return
TRUE
;
}
if
(
!
wglDeleteContext
(
caps_gl_ctx
->
gl_ctx
))
ERR
(
"Failed to delete old context, last error %#x.
\n
"
,
GetLastError
());
ERR
(
"Failed to delete old context, last error %#
l
x.
\n
"
,
GetLastError
());
caps_gl_ctx
->
gl_ctx
=
new_ctx
;
return
TRUE
;
...
...
@@ -4265,7 +4264,7 @@ static HRESULT adapter_gl_create_device(struct wined3d *wined3d, const struct wi
if
(
FAILED
(
hr
=
wined3d_device_init
(
&
device_gl
->
d
,
wined3d
,
adapter
->
ordinal
,
device_type
,
focus_window
,
flags
,
surface_alignment
,
levels
,
level_count
,
adapter
->
gl_info
.
supported
,
device_parent
)))
{
WARN
(
"Failed to initialize device, hr %#x.
\n
"
,
hr
);
WARN
(
"Failed to initialize device, hr %#
l
x.
\n
"
,
hr
);
heap_free
(
device_gl
);
return
hr
;
}
...
...
@@ -4700,7 +4699,7 @@ static HRESULT adapter_gl_create_swapchain(struct wined3d_device *device,
if
(
FAILED
(
hr
=
wined3d_swapchain_gl_init
(
swapchain_gl
,
device
,
desc
,
state_parent
,
parent
,
parent_ops
)))
{
WARN
(
"Failed to initialise swapchain, hr %#x.
\n
"
,
hr
);
WARN
(
"Failed to initialise swapchain, hr %#
l
x.
\n
"
,
hr
);
heap_free
(
swapchain_gl
);
return
hr
;
}
...
...
@@ -4734,7 +4733,7 @@ static HRESULT adapter_gl_create_buffer(struct wined3d_device *device,
if
(
FAILED
(
hr
=
wined3d_buffer_gl_init
(
buffer_gl
,
device
,
desc
,
data
,
parent
,
parent_ops
)))
{
WARN
(
"Failed to initialise buffer, hr %#x.
\n
"
,
hr
);
WARN
(
"Failed to initialise buffer, hr %#
l
x.
\n
"
,
hr
);
heap_free
(
buffer_gl
);
return
hr
;
}
...
...
@@ -4781,7 +4780,7 @@ static HRESULT adapter_gl_create_texture(struct wined3d_device *device,
if
(
FAILED
(
hr
=
wined3d_texture_gl_init
(
texture_gl
,
device
,
desc
,
layer_count
,
level_count
,
flags
,
parent
,
parent_ops
)))
{
WARN
(
"Failed to initialise texture, hr %#x.
\n
"
,
hr
);
WARN
(
"Failed to initialise texture, hr %#
l
x.
\n
"
,
hr
);
heap_free
(
texture_gl
);
return
hr
;
}
...
...
@@ -4832,7 +4831,7 @@ static HRESULT adapter_gl_create_rendertarget_view(const struct wined3d_view_des
if
(
FAILED
(
hr
=
wined3d_rendertarget_view_gl_init
(
view_gl
,
desc
,
resource
,
parent
,
parent_ops
)))
{
WARN
(
"Failed to initialise view, hr %#x.
\n
"
,
hr
);
WARN
(
"Failed to initialise view, hr %#
l
x.
\n
"
,
hr
);
heap_free
(
view_gl
);
return
hr
;
}
...
...
@@ -4936,7 +4935,7 @@ static HRESULT adapter_gl_create_shader_resource_view(const struct wined3d_view_
if
(
FAILED
(
hr
=
wined3d_shader_resource_view_gl_init
(
view_gl
,
desc
,
resource
,
parent
,
parent_ops
)))
{
WARN
(
"Failed to initialise view, hr %#x.
\n
"
,
hr
);
WARN
(
"Failed to initialise view, hr %#
l
x.
\n
"
,
hr
);
heap_free
(
view_gl
);
return
hr
;
}
...
...
@@ -4981,7 +4980,7 @@ static HRESULT adapter_gl_create_unordered_access_view(const struct wined3d_view
if
(
FAILED
(
hr
=
wined3d_unordered_access_view_gl_init
(
view_gl
,
desc
,
resource
,
parent
,
parent_ops
)))
{
WARN
(
"Failed to initialise view, hr %#x.
\n
"
,
hr
);
WARN
(
"Failed to initialise view, hr %#
l
x.
\n
"
,
hr
);
heap_free
(
view_gl
);
return
hr
;
}
...
...
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