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
c7d61ab7
Commit
c7d61ab7
authored
Dec 12, 2022
by
Max Figura
Committed by
Alexandre Julliard
Mar 01, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Move the WINED3D_RS_STIPPLEDALPHA stub to wined3d_device_apply_stateblock.
parent
64277d0c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
10 deletions
+6
-10
adapter_vk.c
dlls/wined3d/adapter_vk.c
+0
-1
device.c
dlls/wined3d/device.c
+5
-0
directx.c
dlls/wined3d/directx.c
+0
-1
state.c
dlls/wined3d/state.c
+1
-8
No files found.
dlls/wined3d/adapter_vk.c
View file @
c7d61ab7
...
...
@@ -98,7 +98,6 @@ static const struct wined3d_state_entry_template misc_state_template_vk[] =
{
STATE_INDEXBUFFER
,
{
STATE_INDEXBUFFER
,
state_nop
}},
{
STATE_RENDER
(
WINED3D_RS_LINEPATTERN
),
{
STATE_RENDER
(
WINED3D_RS_LINEPATTERN
),
state_nop
}},
{
STATE_RENDER
(
WINED3D_RS_DITHERENABLE
),
{
STATE_RENDER
(
WINED3D_RS_DITHERENABLE
),
state_nop
}},
{
STATE_RENDER
(
WINED3D_RS_STIPPLEDALPHA
),
{
STATE_RENDER
(
WINED3D_RS_STIPPLEDALPHA
),
state_nop
}},
{
STATE_RENDER
(
WINED3D_RS_STIPPLEENABLE
),
{
STATE_RENDER
(
WINED3D_RS_STIPPLEENABLE
),
state_nop
}},
{
STATE_RENDER
(
WINED3D_RS_MIPMAPLODBIAS
),
{
STATE_RENDER
(
WINED3D_RS_MIPMAPLODBIAS
),
state_nop
}},
{
STATE_RENDER
(
WINED3D_RS_ANISOTROPY
),
{
STATE_RENDER
(
WINED3D_RS_ANISOTROPY
),
state_nop
}},
...
...
dlls/wined3d/device.c
View file @
c7d61ab7
...
...
@@ -4099,6 +4099,11 @@ void CDECL wined3d_device_apply_stateblock(struct wined3d_device *device,
FIXME
(
"Render state WINED3D_RS_SUBPIXELX not implemented yet.
\n
"
);
break
;
case
WINED3D_RS_STIPPLEDALPHA
:
if
(
state
->
rs
[
WINED3D_RS_STIPPLEDALPHA
])
FIXME
(
"Stippled Alpha not supported yet.
\n
"
);
break
;
default:
wined3d_device_set_render_state
(
device
,
idx
,
state
->
rs
[
idx
]);
break
;
...
...
dlls/wined3d/directx.c
View file @
c7d61ab7
...
...
@@ -2811,7 +2811,6 @@ static const struct wined3d_state_entry_template misc_state_template_no3d[] =
{
STATE_RENDER
(
WINED3D_RS_LINEPATTERN
),
{
STATE_VDECL
}},
{
STATE_RENDER
(
WINED3D_RS_ZFUNC
),
{
STATE_VDECL
}},
{
STATE_RENDER
(
WINED3D_RS_DITHERENABLE
),
{
STATE_VDECL
}},
{
STATE_RENDER
(
WINED3D_RS_STIPPLEDALPHA
),
{
STATE_VDECL
}},
{
STATE_RENDER
(
WINED3D_RS_STIPPLEENABLE
),
{
STATE_VDECL
}},
{
STATE_RENDER
(
WINED3D_RS_MIPMAPLODBIAS
),
{
STATE_VDECL
}},
{
STATE_RENDER
(
WINED3D_RS_ANISOTROPY
),
{
STATE_VDECL
}},
...
...
dlls/wined3d/state.c
View file @
c7d61ab7
...
...
@@ -1969,12 +1969,6 @@ static void depthbias(struct wined3d_context *context, const struct wined3d_stat
checkGLcall
(
"depth bias"
);
}
static
void
state_stippledalpha
(
struct
wined3d_context
*
context
,
const
struct
wined3d_state
*
state
,
DWORD
state_id
)
{
if
(
state
->
render_states
[
WINED3D_RS_STIPPLEDALPHA
])
FIXME
(
"Stippled Alpha not supported yet.
\n
"
);
}
static
void
state_sample_mask
(
struct
wined3d_context
*
context
,
const
struct
wined3d_state
*
state
,
DWORD
state_id
)
{
const
struct
wined3d_gl_info
*
gl_info
=
wined3d_context_gl
(
context
)
->
gl_info
;
...
...
@@ -4717,7 +4711,6 @@ const struct wined3d_state_entry_template misc_state_template_gl[] =
{
STATE_RENDER
(
WINED3D_RS_LINEPATTERN
),
{
STATE_RENDER
(
WINED3D_RS_LINEPATTERN
),
state_linepattern
},
WINED3D_GL_LEGACY_CONTEXT
},
{
STATE_RENDER
(
WINED3D_RS_LINEPATTERN
),
{
STATE_RENDER
(
WINED3D_RS_LINEPATTERN
),
state_linepattern_w
},
WINED3D_GL_EXT_NONE
},
{
STATE_RENDER
(
WINED3D_RS_DITHERENABLE
),
{
STATE_RENDER
(
WINED3D_RS_DITHERENABLE
),
state_ditherenable
},
WINED3D_GL_EXT_NONE
},
{
STATE_RENDER
(
WINED3D_RS_STIPPLEDALPHA
),
{
STATE_RENDER
(
WINED3D_RS_STIPPLEDALPHA
),
state_stippledalpha
},
WINED3D_GL_EXT_NONE
},
{
STATE_RENDER
(
WINED3D_RS_STIPPLEENABLE
),
{
STATE_RENDER
(
WINED3D_RS_STIPPLEENABLE
),
state_stippleenable
},
WINED3D_GL_EXT_NONE
},
{
STATE_RENDER
(
WINED3D_RS_MIPMAPLODBIAS
),
{
STATE_RENDER
(
WINED3D_RS_MIPMAPLODBIAS
),
state_mipmaplodbias
},
WINED3D_GL_EXT_NONE
},
{
STATE_RENDER
(
WINED3D_RS_ANISOTROPY
),
{
STATE_RENDER
(
WINED3D_RS_ANISOTROPY
),
state_anisotropy
},
WINED3D_GL_EXT_NONE
},
...
...
@@ -5514,7 +5507,7 @@ static void validate_state_table(struct wined3d_state_entry *state_table)
{
11
,
14
},
{
16
,
23
},
{
27
,
27
},
{
30
,
3
2
},
{
30
,
3
3
},
{
40
,
40
},
{
42
,
45
},
{
47
,
47
},
...
...
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