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
390543dd
Commit
390543dd
authored
Aug 19, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Aug 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Use the "adapter" local variable in swapchain_init().
parent
b2721d5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
swapchain.c
dlls/wined3d/swapchain.c
+2
-2
No files found.
dlls/wined3d/swapchain.c
View file @
390543dd
...
...
@@ -925,7 +925,7 @@ static HRESULT swapchain_init(struct wined3d_swapchain *swapchain, struct wined3
mode
.
refresh_rate
=
desc
->
refresh_rate
;
mode
.
scanline_ordering
=
WINED3D_SCANLINE_ORDERING_UNKNOWN
;
if
(
FAILED
(
hr
=
wined3d_set_adapter_display_mode
(
device
->
wined3d
,
device
->
adapter
->
ordinal
,
&
mode
)))
if
(
FAILED
(
hr
=
wined3d_set_adapter_display_mode
(
device
->
wined3d
,
adapter
->
ordinal
,
&
mode
)))
{
WARN
(
"Failed to set display mode, hr %#x.
\n
"
,
hr
);
goto
err
;
...
...
@@ -944,7 +944,7 @@ static HRESULT swapchain_init(struct wined3d_swapchain *swapchain, struct wined3
WINED3DFMT_S1_UINT_D15_UNORM
};
const
struct
wined3d_gl_info
*
gl_info
=
&
device
->
adapter
->
gl_info
;
const
struct
wined3d_gl_info
*
gl_info
=
&
adapter
->
gl_info
;
swapchain
->
context
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
swapchain
->
context
));
if
(
!
swapchain
->
context
)
...
...
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