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
ccaa09e6
Commit
ccaa09e6
authored
Dec 01, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Convert fbo_entry.rt_mask to uint32_t type.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
parent
29c2bb54
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
context_gl.c
dlls/wined3d/context_gl.c
+1
-1
glsl_shader.c
dlls/wined3d/glsl_shader.c
+2
-2
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-1
No files found.
dlls/wined3d/context_gl.c
View file @
ccaa09e6
...
...
@@ -3666,7 +3666,7 @@ void context_state_fb(struct wined3d_context *context, const struct wined3d_stat
uint32_t
rt_mask
=
find_draw_buffers_mask
(
context_gl
,
state
);
const
struct
wined3d_fb_state
*
fb
=
&
state
->
fb
;
DWORD
color_location
=
0
;
DWORD
*
cur_mask
;
uint32_t
*
cur_mask
;
if
(
wined3d_settings
.
offscreen_rendering_mode
==
ORM_FBO
)
{
...
...
dlls/wined3d/glsl_shader.c
View file @
ccaa09e6
...
...
@@ -7590,7 +7590,7 @@ static void shader_glsl_generate_color_output(struct wined3d_string_buffer *buff
}
else
{
DWORD
mask
=
shader
->
reg_maps
.
rt_mask
;
uint32_t
mask
=
shader
->
reg_maps
.
rt_mask
;
while
(
mask
)
{
...
...
@@ -7841,7 +7841,7 @@ static GLuint shader_glsl_generate_fragment_shader(const struct wined3d_context_
}
else
{
DWORD
mask
=
reg_maps
->
rt_mask
;
uint32_t
mask
=
reg_maps
->
rt_mask
;
while
(
mask
)
{
...
...
dlls/wined3d/wined3d_private.h
View file @
ccaa09e6
...
...
@@ -4875,7 +4875,7 @@ struct fbo_entry
{
struct
list
entry
;
uint32_t
flags
;
DWORD
rt_mask
;
uint32_t
rt_mask
;
GLuint
id
;
struct
wined3d_fbo_entry_key
{
...
...
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