1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-04-03 07:25:18 +02:00

555 Commits

Author SHA1 Message Date
Philip Rebohle
1582567ed2 [dxvk,d3d9,d3d11] Refactor input layout objects 2025-03-24 03:25:27 +01:00
Philip Rebohle
9bb7d8ca12 [dxvk,d3d9,d3d11] Refactor rasterizer state object 2025-03-24 03:25:27 +01:00
Philip Rebohle
8de7397816 [dxvk,d3d9,d3d11] Normalize blend state in front-end 2025-03-24 03:25:27 +01:00
Philip Rebohle
a1106db71f [dxvk,d3d9,d3d11] Refactor blend state object 2025-03-24 03:25:27 +01:00
Philip Rebohle
3c097046b2 [dxvk,d3d9,d3d11] Refactor logic op state object 2025-03-24 03:25:27 +01:00
Philip Rebohle
357e130668 [dxvk,d3d9,d3d11] Refactor multisample state object 2025-03-24 03:25:27 +01:00
Philip Rebohle
4e1b099b74 [dxvk,d3d9,d3d11] Normalize depth-stencil state in front-end
Reduces some unnecessary pipeline look-ups and also helps with
recognizing read-only depth-stencil attachments in more scenarios.
2025-03-24 03:25:27 +01:00
Philip Rebohle
92b3e96ebc [dxvk,d3d9,d3d11] Refactor depth-stencil state object
No reason to pass 72 bytes around when we can do with 10.
2025-03-24 03:25:27 +01:00
Philip Rebohle
bdb9e4f814 [d3d9] Clamp depth bounds to 0..1 range
Silences validation errors in The Witcher 2.
2025-03-23 20:17:54 +01:00
Philip Rebohle
05e26f512b [dxvk,d3d11,d3d9] Refactor viewport updates
Might as well use the CS chunk array functionality for this.
2025-03-11 11:16:36 +01:00
Robin Kertels
a59dde3821 [d3d9] Consolidate shader const related fields 2025-03-11 11:16:19 +01:00
Philip Rebohle
99093e6cd7 [dxvk] Remove resolveDepthStencilResolve method 2025-03-11 01:30:14 +01:00
Philip Rebohle
209b07f7db [dxvk] Extend resolveImage to support depth-stencil resolves
Also require the format to be defined.
2025-03-11 01:30:14 +01:00
WinterSnowfall
ed87cd58a7 [d3d9] More or less minor static analysis nits 2025-03-09 11:46:35 +01:00
WinterSnowfall
3f7460931a [d3d8] Enforce the pCaps->MaxVertexShaderConst limit on VS creation 2025-03-08 12:41:02 +01:00
WinterSnowfall
ed071005e9 [d3d8/9] Enforce SM1 when in D3D8 compatibility mode 2025-03-08 12:41:02 +01:00
Philip Rebohle
542e0d2ab0 [dxvk,d3d9,d3d11] Decouple ID3DUserDefinedAnnotation from internal markers
Some games nope out when we expose debug markers, so add a debug mode
that doesn't while still providing internal markers and debug names.
2025-03-06 09:54:34 +01:00
Philip Rebohle
a0c8bbaf10 [dxvk] Add method to retrieve resource debug names 2025-02-25 00:17:31 +01:00
Philip Rebohle
016f05a770 [dxvk] Implement draw batching via VK_EXT_multi_draw 2025-02-23 13:24:28 +01:00
Robin Kertels
94b48c1633 [d3d9] Slightly clean up sampler slot handling 2025-02-21 13:25:23 +01:00
Robin Kertels
f7d56886c5 [d3d9] Fix sampler slot correction not respecting dmap texture 2025-02-21 13:25:23 +01:00
WinterSnowfall
3716d48c89 [d3d8/9] Use numeric_limits globally 2025-02-20 00:01:10 +01:00
WinterSnowfall
92523fc0dd [d3d9] Fix x64 crash on SetVertexShaderConstantF index overflow 2025-02-17 15:11:05 +01:00
WinterSnowfall
274c590ad6 [d3d9] Set priority only for D3DPOOL_MANAGED/DEFAULT resources 2025-02-17 15:11:05 +01:00
Robin Kertels
3269f92138 [d3d9] Fix mismatching texture type mask updates 2025-02-17 14:32:34 +01:00
Philip Rebohle
80fb7e2294 [d3d9,d3d11] Adjust flush heuristic on tiling GPUs
Probably needs work, just disable most of the heuristic for the time being.
2025-02-10 16:13:31 +01:00
WinterSnowfall
13554f18bd [d3d9] Update software cursor position using SetCursorPosition 2025-02-08 22:28:48 +01:00
WinterSnowfall
bd69d1efdc [d3d8/9] Use shader version macros where applicable 2025-02-02 18:17:10 +01:00
WinterSnowfall
ad0920fe1e [d3d9] Relax SM2 minor version checks on shader creation 2025-01-26 20:02:45 +01:00
WinterSnowfall
c6dc7e0939 [d3d8/9] Proper (and age accurate) handling of d3d9.shaderModel = 0 2025-01-26 13:56:27 +01:00
Philip Rebohle
539da5abdf [dxvk] Refactor CS chunk queues
Introduces two queues and allows us to dispatch chunks to the ordered
queue without disrupting the sequence number.
2025-01-25 18:02:20 +01:00
Philip Rebohle
0e3ed707ba [d3d9] Implement latency tracking 2025-01-25 18:02:20 +01:00
Philip Rebohle
3dbe8ad43c [d3d9] Rework device reset detection
More robust.
2025-01-16 11:38:39 +01:00
Philip Rebohle
1721be4973 [d3d9] Set debug names for internal buffers 2025-01-09 16:25:46 +01:00
Philip Rebohle
5487f8b9a0 [dxvk] Add convenience methods to check for debug utils support 2025-01-09 16:25:46 +01:00
Robin Kertels
24f98c5835 [d3d9] Skip texture type check when forceSpecConst option is active 2025-01-04 02:11:58 +00:00
Robin Kertels
1eb0c687a6 [d3d9] Fix messing up the dirty textures bitmask 2024-12-20 18:26:02 +01:00
Robin Kertels
65843aa016 [d3d9] Don't bind textures if texture type doesnt match 2024-12-17 14:49:52 +01:00
WinterSnowfall
4dd0afe121 [d3d9] Validate depth and stencil clears 2024-12-10 01:16:24 +01:00
Autumn Ashton
d956b188ed [d3d9] Clip plane compaction
Compact clip planes to the smallest amount that are enabled.

Signed-off-by: Autumn Ashton <misyl@froggi.es>
2024-12-05 06:08:34 +00:00
Autumn Ashton
8c4c814fb7 [d3d9] Spec-constant out writes to clip distances when disabled
Add a new spec constant with a mask of the enabled clip planes such that they can be optimized out to improve performance.

For GPL shaders, override what we return here so it's always true and don't bother putting the mask in the UBO.

Signed-off-by: Autumn Ashton <misyl@froggi.es>
2024-12-05 06:08:34 +00:00
WinterSnowfall
027fe5963a [d3d9] Fixes for state block specific behavior 2024-12-04 13:06:28 +01:00
WinterSnowfall
17b85accfb [d3d9] Adjust device reset failure error codes 2024-12-04 13:06:28 +01:00
WinterSnowfall
fb56668dc0 [d3d9] Adjust out of bounds clip plane index handling 2024-12-04 13:06:28 +01:00
WinterSnowfall
9c012c8e75 [d3d9] Skip recording MultiplyTransform calls in state blocks 2024-12-04 13:06:28 +01:00
WinterSnowfall
9e1bc1db23 [d3d9] Expand NormalizeTextureProperties validations 2024-11-23 16:58:25 +01:00
WinterSnowfall
97ad37e409 [d3d9] Validate RT parent device during SetRenderTarget 2024-11-23 16:58:25 +01:00
WinterSnowfall
77020760f1 [d3d9] Fix behavior on multiple image unlocks 2024-11-23 16:58:25 +01:00
WinterSnowfall
4f98844f47 [d3d9] Skip some validations for D3DDEVTYPE_NULLREF devices 2024-11-23 16:58:25 +01:00
Blisto91
7f1e52703d [d3d9] Change correctness factor to 0.5f
The original issue that 0.5f - (1.0f / 128.0f) fixed is a game bug that also happens on Windows and the version of the addon used back then didn't fix correctly. With the latest version of the addon it looks correct.
2024-11-18 13:03:58 +01:00