Alexandre Julliard pushed to branch master at wine / wine
Commits:
34dce633 by Jacek Caban at 2024-11-19T21:11:54+01:00
configure: Preserve original CFLAGS when adding LLVM flags.
Ensure that the specified CROSSCFLAGS (or its default value) is applied consistently during
toolchain checks. Also fixes debug format recognition.
The regression was introduced in commit 471d7178ae01.
- - - - -
2 changed files:
- configure
- configure.ac
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/34dce6335a95aa706e51923370b0d6…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/34dce6335a95aa706e51923370b0d6…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
1365b27a by Charlotte Pabst at 2024-11-19T21:11:54+01:00
jscript: Handle star and opt operators while matching global regex properly.
Before this fix, the regex engine would run into an infinite loop and OOM when encountering a
quantifier allowing a zero amount of items in a REG_GLOB regex.
- - - - -
005c8b8b by Charlotte Pabst at 2024-11-19T21:11:54+01:00
jscript/tests: Add tests for star and opt operators in global regex.
- - - - -
2 changed files:
- dlls/jscript/jsregexp.c
- dlls/jscript/tests/regexp.js
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/721b7f5df6b08762b322689351b7d…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/721b7f5df6b08762b322689351b7d…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
d2bed27b by Elizabeth Figura at 2024-11-19T21:11:54+01:00
wined3d: Move shader_trace().
- - - - -
2eb7397e by Elizabeth Figura at 2024-11-19T21:11:54+01:00
wined3d: Move shader parsing to shader_set_function().
The idea is that we will have wined3d_shader objects that represent shaders
not yet in d3d form (specifically, in HLSL form or containing only an FFP
settings struct.) Hence we need to make it possible to delay d3d shader parsing,
but still keep the rest of shader_init().
- - - - -
484c6f9a by Elizabeth Figura at 2024-11-19T21:11:54+01:00
wined3d: Create stub FFP pixel shaders.
We only compute ffp_frag_settings and stash that in the shader byte_code.
The HLSL shader will be compiled to sm2 bytecode on the CS side, and then parsed
and interpreted by the shader backend (and all other code) as if it were a real
shader.
In theory, we could take the extra step of retrieving the settings from this
shader in the GLSL backend, instead of from the current state.
This however requires changing a number of places which currently check
"state->shader[WINED3D_SHADER_TYPE_PIXEL]" to also check "is_ffp_ps", and it
also means we need to handle some more states (shade mode, fog, etc.) as part of
ffp_frag_settings. Both of these will go away as soon as the GLSL backend can
simply consume the generated HLSL shader.
- - - - -
04450b6e by Elizabeth Figura at 2024-11-19T21:11:54+01:00
wined3d: Create stub FFP vertex shaders.
- - - - -
3251015e by Elizabeth Figura at 2024-11-19T21:11:54+01:00
wined3d: Account for HLSL FFP shaders in find_ps_compile_args().
In most cases, it is possible to construct a D3D shader which behaves
identically to a given FFP pipeline.
There are two exceptions, related to fog and texture transforms, where the FFP
pipeline has special behaviour that cannot be emulated with shaders, and we
handle those here by checking whether our shader is actually an FFP replacement
shader.
- - - - -
ff430720 by Elizabeth Figura at 2024-11-19T21:11:54+01:00
wined3d: Allow using the HLSL FFP replacement with GL.
This will allow us to replace the GLSL FFP pipes, and is useful for testing
the FFP HLSL backend before the Vulkan backend is mature enough in other
respects.
This patch introduces the d3d setting "ffp_hlsl", set to a DWORD value.
It is disabled by default, and only has an effect on the GL renderer.
- - - - -
eaef138d by Elizabeth Figura at 2024-11-19T21:11:54+01:00
wined3d: Use the FFP HLSL pipeline for pretransformed draws as well.
- - - - -
a50dd339 by Elizabeth Figura at 2024-11-19T21:11:54+01:00
wined3d: Beginnings of an HLSL FFP vertex shader implementation.
- - - - -
13 changed files:
- dlls/wined3d/Makefile.in
- dlls/wined3d/adapter_gl.c
- dlls/wined3d/adapter_vk.c
- dlls/wined3d/context.c
- dlls/wined3d/cs.c
- dlls/wined3d/device.c
- + dlls/wined3d/ffp_hlsl.c
- dlls/wined3d/glsl_shader.c
- dlls/wined3d/shader.c
- dlls/wined3d/stateblock.c
- dlls/wined3d/utils.c
- dlls/wined3d/wined3d_main.c
- dlls/wined3d/wined3d_private.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c2b9d2102e80623940f85b641a788…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/c2b9d2102e80623940f85b641a788…
You're receiving this email because of your account on gitlab.winehq.org.