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
16e862ba
Commit
16e862ba
authored
Apr 25, 2013
by
Stefan Dösinger
Committed by
Alexandre Julliard
Apr 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add a new structure for d3d limits and other info.
parent
0321e636
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
29 additions
and
12 deletions
+29
-12
arb_program_shader.c
dlls/wined3d/arb_program_shader.c
+8
-4
context.c
dlls/wined3d/context.c
+1
-0
device.c
dlls/wined3d/device.c
+0
-1
directx.c
dlls/wined3d/directx.c
+4
-0
state.c
dlls/wined3d/state.c
+7
-5
utils.c
dlls/wined3d/utils.c
+2
-1
wined3d_private.h
dlls/wined3d/wined3d_private.h
+7
-1
No files found.
dlls/wined3d/arb_program_shader.c
View file @
16e862ba
...
...
@@ -4293,6 +4293,7 @@ static struct arb_ps_compiled_shader *find_arb_pshader(struct wined3d_shader *sh
{
struct
wined3d_device
*
device
=
shader
->
device
;
const
struct
wined3d_gl_info
*
gl_info
=
&
device
->
adapter
->
gl_info
;
const
struct
wined3d_d3d_info
*
d3d_info
=
&
device
->
adapter
->
d3d_info
;
UINT
i
;
DWORD
new_size
;
struct
arb_ps_compiled_shader
*
new_array
;
...
...
@@ -4315,7 +4316,7 @@ static struct arb_ps_compiled_shader *find_arb_pshader(struct wined3d_shader *sh
TRACE
(
"Shader got assigned input signature index %u
\n
"
,
shader_data
->
input_signature_idx
);
if
(
!
d
evice
->
vs_clipping
)
if
(
!
d
3d_info
->
vs_clipping
)
shader_data
->
clipplane_emulation
=
shader_find_free_input_register
(
&
shader
->
reg_maps
,
gl_info
->
limits
.
texture_stages
-
1
);
else
...
...
@@ -4475,6 +4476,7 @@ static void find_arb_ps_compile_args(const struct wined3d_state *state,
{
struct
wined3d_device
*
device
=
shader
->
device
;
const
struct
wined3d_gl_info
*
gl_info
=
&
device
->
adapter
->
gl_info
;
const
struct
wined3d_d3d_info
*
d3d_info
=
&
device
->
adapter
->
d3d_info
;
int
i
;
WORD
int_skip
;
...
...
@@ -4493,7 +4495,7 @@ static void find_arb_ps_compile_args(const struct wined3d_state *state,
* is quite expensive because it forces the driver to disable early Z discards. It is cheaper to
* duplicate the shader than have a no-op KIL instruction in every shader
*/
if
(
!
d
evice
->
vs_clipping
&&
use_vs
(
state
)
if
(
!
d
3d_info
->
vs_clipping
&&
use_vs
(
state
)
&&
state
->
render_states
[
WINED3D_RS_CLIPPING
]
&&
state
->
render_states
[
WINED3D_RS_CLIPPLANEENABLE
])
args
->
clip
=
1
;
...
...
@@ -4529,7 +4531,9 @@ static void find_arb_vs_compile_args(const struct wined3d_state *state,
const
struct
wined3d_shader
*
shader
,
struct
arb_vs_compile_args
*
args
)
{
struct
wined3d_device
*
device
=
shader
->
device
;
const
struct
wined3d_gl_info
*
gl_info
=
&
device
->
adapter
->
gl_info
;
const
struct
wined3d_adapter
*
adapter
=
device
->
adapter
;
const
struct
wined3d_gl_info
*
gl_info
=
&
adapter
->
gl_info
;
const
struct
wined3d_d3d_info
*
d3d_info
=
&
adapter
->
d3d_info
;
int
i
;
WORD
int_skip
;
...
...
@@ -4547,7 +4551,7 @@ static void find_arb_vs_compile_args(const struct wined3d_state *state,
else
{
args
->
ps_signature
=
~
0
;
if
(
!
d
evice
->
vs_clipping
&&
device
->
adapter
->
fragment_pipe
==
&
arbfp_fragment_pipeline
)
if
(
!
d
3d_info
->
vs_clipping
&&
adapter
->
fragment_pipe
==
&
arbfp_fragment_pipeline
)
{
args
->
clip
.
boolclip
.
clip_texcoord
=
ffp_clip_emul
(
state
)
?
gl_info
->
limits
.
texture_stages
:
0
;
}
...
...
dlls/wined3d/context.c
View file @
16e862ba
...
...
@@ -1449,6 +1449,7 @@ struct wined3d_context *context_create(struct wined3d_swapchain *swapchain,
}
ret
->
gl_info
=
gl_info
;
ret
->
d3d_info
=
&
device
->
adapter
->
d3d_info
;
ret
->
state_table
=
device
->
StateTable
;
/* Mark all states dirty to force a proper initialization of the states
...
...
dlls/wined3d/device.c
View file @
16e862ba
...
...
@@ -5435,7 +5435,6 @@ HRESULT device_init(struct wined3d_device *device, struct wined3d *wined3d,
device
->
ps_version
=
shader_caps
.
ps_version
;
device
->
d3d_vshader_constantF
=
shader_caps
.
vs_uniform_count
;
device
->
d3d_pshader_constantF
=
shader_caps
.
ps_uniform_count
;
device
->
vs_clipping
=
shader_caps
.
wined3d_caps
&
WINED3D_SHADER_CAP_VS_CLIPPING
;
vertex_pipeline
=
adapter
->
vertex_pipe
;
...
...
dlls/wined3d/directx.c
View file @
16e862ba
...
...
@@ -2625,6 +2625,7 @@ static BOOL wined3d_adapter_init_gl_caps(struct wined3d_adapter *adapter)
struct
wined3d_gl_info
*
gl_info
=
&
adapter
->
gl_info
;
enum
wined3d_pci_vendor
card_vendor
;
struct
fragment_caps
fragment_caps
;
struct
shader_caps
shader_caps
;
const
char
*
WGL_Extensions
=
NULL
;
const
char
*
GL_Extensions
=
NULL
;
enum
wined3d_gl_vendor
gl_vendor
;
...
...
@@ -2843,6 +2844,9 @@ static BOOL wined3d_adapter_init_gl_caps(struct wined3d_adapter *adapter)
adapter
->
fragment_pipe
=
select_fragment_implementation
(
gl_info
,
adapter
->
shader_backend
);
adapter
->
blitter
=
select_blit_implementation
(
gl_info
,
adapter
->
shader_backend
);
adapter
->
shader_backend
->
shader_get_caps
(
&
adapter
->
gl_info
,
&
shader_caps
);
adapter
->
d3d_info
.
vs_clipping
=
shader_caps
.
wined3d_caps
&
WINED3D_SHADER_CAP_VS_CLIPPING
;
adapter
->
fragment_pipe
->
get_caps
(
gl_info
,
&
fragment_caps
);
gl_info
->
limits
.
texture_stages
=
fragment_caps
.
MaxTextureBlendStages
;
TRACE
(
"Max texture stages: %u.
\n
"
,
gl_info
->
limits
.
texture_stages
);
...
...
dlls/wined3d/state.c
View file @
16e862ba
...
...
@@ -610,9 +610,7 @@ static void state_clipping(struct wined3d_context *context, const struct wined3d
if
(
use_vs
(
state
))
{
const
struct
wined3d_device
*
device
=
context
->
swapchain
->
device
;
if
(
!
device
->
vs_clipping
)
if
(
!
context
->
d3d_info
->
vs_clipping
)
{
/* The spec says that opengl clipping planes are disabled when using shaders. Direct3D planes aren't,
* so that is an issue. The MacOS ATI driver keeps clipping planes activated with shaders in some
...
...
@@ -4603,8 +4601,11 @@ static void vertexdeclaration(struct wined3d_context *context, const struct wine
{
updateFog
=
TRUE
;
if
(
!
device
->
vs_clipping
&&
!
isStateDirty
(
context
,
STATE_RENDER
(
WINED3D_RS_CLIPPLANEENABLE
)))
if
(
!
context
->
d3d_info
->
vs_clipping
&&
!
isStateDirty
(
context
,
STATE_RENDER
(
WINED3D_RS_CLIPPLANEENABLE
)))
{
state_clipping
(
context
,
state
,
STATE_RENDER
(
WINED3D_RS_CLIPPLANEENABLE
));
}
for
(
i
=
0
;
i
<
gl_info
->
limits
.
clipplanes
;
++
i
)
{
...
...
@@ -4618,7 +4619,8 @@ static void vertexdeclaration(struct wined3d_context *context, const struct wine
{
if
(
!
context
->
last_was_vshader
)
{
static
BOOL
warned
=
FALSE
;
if
(
!
device
->
vs_clipping
)
{
if
(
!
context
->
d3d_info
->
vs_clipping
)
{
/* Disable all clip planes to get defined results on all drivers. See comment in the
* state_clipping state handler
*/
...
...
dlls/wined3d/utils.c
View file @
16e862ba
...
...
@@ -3131,6 +3131,7 @@ void gen_ffp_frag_op(const struct wined3d_device *device, const struct wined3d_s
DWORD
cop
,
aop
,
carg0
,
carg1
,
carg2
,
aarg0
,
aarg1
,
aarg2
;
const
struct
wined3d_surface
*
rt
=
state
->
fb
->
render_targets
[
0
];
const
struct
wined3d_gl_info
*
gl_info
=
&
device
->
adapter
->
gl_info
;
const
struct
wined3d_d3d_info
*
d3d_info
=
&
device
->
adapter
->
d3d_info
;
for
(
i
=
0
;
i
<
gl_info
->
limits
.
texture_stages
;
++
i
)
{
...
...
@@ -3350,7 +3351,7 @@ void gen_ffp_frag_op(const struct wined3d_device *device, const struct wined3d_s
}
else
{
settings
->
sRGB_write
=
0
;
}
if
(
d
evice
->
vs_clipping
||
!
use_vs
(
state
)
||
!
state
->
render_states
[
WINED3D_RS_CLIPPING
]
if
(
d
3d_info
->
vs_clipping
||
!
use_vs
(
state
)
||
!
state
->
render_states
[
WINED3D_RS_CLIPPING
]
||
!
state
->
render_states
[
WINED3D_RS_CLIPPLANEENABLE
])
{
/* No need to emulate clipplanes if GL supports native vertex shader clipping or if
...
...
dlls/wined3d/wined3d_private.h
View file @
16e862ba
...
...
@@ -1059,6 +1059,7 @@ BOOL wined3d_event_query_supported(const struct wined3d_gl_info *gl_info) DECLSP
struct
wined3d_context
{
const
struct
wined3d_gl_info
*
gl_info
;
const
struct
wined3d_d3d_info
*
d3d_info
;
const
struct
StateEntry
*
state_table
;
/* State dirtification
* dirtyArray is an array that contains markers for dirty states. numDirtyEntries states are dirty, their numbers are in indices
...
...
@@ -1586,6 +1587,11 @@ struct wined3d_driver_info
DWORD
version_low
;
};
struct
wined3d_d3d_info
{
BOOL
vs_clipping
;
};
/* The adapter structure */
struct
wined3d_adapter
{
...
...
@@ -1594,6 +1600,7 @@ struct wined3d_adapter
enum
wined3d_format_id
screen_format
;
struct
wined3d_gl_info
gl_info
;
struct
wined3d_d3d_info
d3d_info
;
struct
wined3d_driver_info
driver_info
;
WCHAR
DeviceName
[
CCHDEVICENAME
];
/* DeviceName for use with e.g. ChangeDisplaySettings */
unsigned
int
cfg_count
;
...
...
@@ -1724,7 +1731,6 @@ struct wined3d_device
unsigned
int
max_ffp_textures
;
UINT
vs_version
,
gs_version
,
ps_version
;
DWORD
d3d_vshader_constantF
,
d3d_pshader_constantF
;
/* Advertised d3d caps, not GL ones */
DWORD
vs_clipping
;
UINT
instance_count
;
WORD
vertexBlendUsed
:
1
;
/* To avoid needless setting of the blend matrices */
...
...
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