Alexandre Julliard pushed to branch master at wine / wine
Commits:
a557a6ea by Elizabeth Figura at 2024-11-29T19:10:10+01:00
wined3d: Beginnings of an HLSL FFP pixel shader implementation.
- - - - -
1c057387 by Elizabeth Figura at 2024-11-29T19:10:10+01:00
wined3d: Implement pretransformed varyings in the HLSL FFP pipeline.
- - - - -
ec5140de by Elizabeth Figura at 2024-11-29T19:10:10+01:00
wined3d: Take the depth buffer into account for HLSL pretransformed draws.
- - - - -
52031804 by Elizabeth Figura at 2024-11-29T19:10:11+01:00
wined3d: Implement lighting in the HLSL FFP pipeline.
- - - - -
f71f880d by Elizabeth Figura at 2024-11-29T19:10:11+01:00
wined3d: Implement vertex fog in the HLSL FFP pipeline.
- - - - -
10 changed files:
- dlls/d3d8/device.c
- dlls/d3d9/device.c
- dlls/ddraw/device.c
- dlls/ddraw/surface.c
- dlls/wined3d/ffp_hlsl.c
- dlls/wined3d/shader.c
- dlls/wined3d/stateblock.c
- dlls/wined3d/wined3d.spec
- dlls/wined3d/wined3d_private.h
- include/wine/wined3d.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6c242a1e83397e8eebca8e873f993…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/6c242a1e83397e8eebca8e873f993…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
d58e917e by Elizabeth Figura at 2024-11-29T15:57:42+01:00
wined3d: Use wined3d_texture_download_from_texture() even if the dst texture map binding is not valid.
If we are writing the entire dst resource—and this is always the case for a
download, since wined3d_texture_download_from_texture() does not support partial
downloads—there is no reason to try to preserve any current map binding the
destination resource may have. We are going to load the resource into its map
binding anyway.
In practice this can happen if the destination's valid location is CLEARED.
With the Vulkan renderer, in that case, we currently load the src texture into
SYSMEM and then perform a CPU copy. This change avoids that.
- - - - -
1 changed file:
- dlls/wined3d/surface.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/d58e917e2cb36c6ffcb259356c0617…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/d58e917e2cb36c6ffcb259356c0617…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
800877dc by Jacek Caban at 2024-11-29T15:57:01+01:00
d3d11/tests: Always use a format string in winetest_push_context calls.
Fixes -Wformat-security on Clang.
- - - - -
0d5cae96 by Jacek Caban at 2024-11-29T15:57:02+01:00
ddraw/tests: Always use a format string in winetest_push_context calls.
Fixes -Wformat-security on Clang.
- - - - -
3 changed files:
- dlls/d3d11/tests/d3d11.c
- dlls/ddraw/tests/ddraw4.c
- dlls/ddraw/tests/ddraw7.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/1b5964e15b6fceb00626856e23c5d…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/1b5964e15b6fceb00626856e23c5d…
You're receiving this email because of your account on gitlab.winehq.org.