Alexandre Julliard pushed to branch master at wine / wine
Commits:
2b4ab570 by Connor McAdams at 2024-10-31T13:56:47-05:00
d3dx9: Introduce d3dx_pixel_format_id enumeration.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
61cd71dd by Connor McAdams at 2024-10-31T13:56:48-05:00
d3dx9: Use the d3dx_pixel_format_id enumeration inside of the d3dx_image structure.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
920b79e6 by Connor McAdams at 2024-10-31T13:56:48-05:00
d3dx9: Use the d3dx_pixel_format_id enumeration inside of the DDS pixel format lookup structure.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
ff2070b7 by Connor McAdams at 2024-10-31T13:56:48-05:00
d3dx9: Use the d3dx_pixel_format_id enumeration inside of the WIC pixel format lookup structure.
Signed-off-by: Connor McAdams <cmcadams(a)codeweavers.com>
- - - - -
5 changed files:
- dlls/d3dx9_36/d3dx9_private.h
- dlls/d3dx9_36/surface.c
- dlls/d3dx9_36/texture.c
- dlls/d3dx9_36/util.c
- dlls/d3dx9_36/volume.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/00ea2deabf8f3153eb5958c4aae86…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/00ea2deabf8f3153eb5958c4aae86…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
159f63de by Elizabeth Figura at 2024-10-31T13:46:11-05:00
wmilib.sys: Add stub DLL.
Needed by the FTDI USB D2XX driver.
- - - - -
00ea2dea by Elizabeth Figura at 2024-10-31T13:46:16-05:00
ntoskrnl: Stub PoRequestPowerIrp().
Needed by the FTDI USB D2XX driver.
- - - - -
7 changed files:
- configure
- configure.ac
- dlls/ntoskrnl.exe/ntoskrnl.exe.spec
- dlls/ntoskrnl.exe/pnp.c
- + dlls/wmilib.sys/Makefile.in
- + dlls/wmilib.sys/wmilib.sys.spec
- include/ddk/wdm.h
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f4fd1841e201fef1b27548ae8e9d8…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f4fd1841e201fef1b27548ae8e9d8…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
46a99090 by Elizabeth Figura at 2024-10-31T11:02:16-05:00
win32u: Normalize inverted rectangles in dibdrv_RoundRect().
- - - - -
cf366006 by Elizabeth Figura at 2024-10-31T11:02:19-05:00
win32u: Correctly handle transforms which flip in get_arc_points().
- - - - -
6be6f67d by Elizabeth Figura at 2024-10-31T11:02:19-05:00
win32u: Do not convert back to integer before finding intersections.
This unnecessarily loses precision, and if the point is very close to the origin
(as for the internal arcs generated by RoundRect(), but also for those specified
manually) this may generate an incorrect arc.
This addresses the last artifacts from bug 35331.
- - - - -
41711279 by Elizabeth Figura at 2024-10-31T11:02:23-05:00
win32u: Forward to Rectangle() if the ellipse width or height is zero.
Before 5924ab4c5155d97f4b23a33e97258c1ec382ea02 we would forward to Rectangle()
if the width or height was <= 2. This is incorrect for scaling transformations,
but forwarding when the dimensions are zero is still correct, and avoids errors.
- - - - -
1 changed file:
- dlls/win32u/dibdrv/graphics.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/7d5ddd37fab45afb3beb979cdaf26…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/7d5ddd37fab45afb3beb979cdaf26…
You're receiving this email because of your account on gitlab.winehq.org.
Henri Verbeet pushed to branch master at wine / vkd3d
Commits:
b5f19794 by Henri Verbeet at 2024-10-31T16:46:59+01:00
tests/shader_runner: Print "(none)" for an empty caps list in trace_shader_caps().
Like we do in trace_format_cap().
- - - - -
da75582a by Henri Verbeet at 2024-10-31T16:46:59+01:00
tests/shader_runner: Check whether copy/dispatch/draw succeeded in parse_test_directive().
- - - - -
b0646cb4 by Feifan He at 2024-10-31T16:47:26+01:00
tests/shader_runner: Introduce a Metal shader runner.
- - - - -
30 changed files:
- Makefile.am
- configure.ac
- tests/hlsl/abs.shader_test
- tests/hlsl/all.shader_test
- tests/hlsl/angle-unit.shader_test
- tests/hlsl/any.shader_test
- tests/hlsl/arithmetic-float-uniform.shader_test
- tests/hlsl/arithmetic-float.shader_test
- tests/hlsl/arithmetic-int-uniform.shader_test
- tests/hlsl/arithmetic-int.shader_test
- tests/hlsl/arithmetic-uint.shader_test
- tests/hlsl/array-parameters.shader_test
- tests/hlsl/array-size-expr.shader_test
- tests/hlsl/asfloat.shader_test
- tests/hlsl/asint.shader_test
- tests/hlsl/asuint.shader_test
- tests/hlsl/bitwise-assignment.shader_test
- tests/hlsl/bitwise.shader_test
- tests/hlsl/bool-cast.shader_test
- tests/hlsl/bool-semantics.shader_test
- tests/hlsl/cast-broadcast.shader_test
- tests/hlsl/cast-componentwise-compatible.shader_test
- tests/hlsl/cast-componentwise-equal.shader_test
- tests/hlsl/cast-to-float.shader_test
- tests/hlsl/cast-to-half.shader_test
- tests/hlsl/cast-to-int.shader_test
- tests/hlsl/cast-to-uint.shader_test
- tests/hlsl/cbuffer.shader_test
- tests/hlsl/ceil.shader_test
- tests/hlsl/cf-cond-types.shader_test
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/ad2208b726f825305f69d0997902…
--
View it on GitLab: https://gitlab.winehq.org/wine/vkd3d/-/compare/ad2208b726f825305f69d0997902…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
b91f57c8 by Vijay Kiran Kamuju at 2024-10-29T14:25:46-05:00
gdiplus: Add GdipCreateEffect implementation.
- - - - -
a7e386b6 by Vijay Kiran Kamuju at 2024-10-29T14:25:46-05:00
gdiplus: Partial implementation of GdipGetEffectParameterSize.
- - - - -
3 changed files:
- dlls/gdiplus/gdiplus_private.h
- dlls/gdiplus/image.c
- dlls/gdiplus/tests/image.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/7ccabcea4ac789679c5ca7f8a8471…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/7ccabcea4ac789679c5ca7f8a8471…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
250aee56 by Anton Baskanov at 2024-10-29T14:24:32-05:00
dplayx: Queue DPSYS_CREATEPLAYERORGROUP on player creation.
- - - - -
be1a0d1d by Anton Baskanov at 2024-10-29T14:24:32-05:00
dplayx: Remove received message from the queue.
- - - - -
f6101581 by Anton Baskanov at 2024-10-29T14:24:32-05:00
dplayx: Set message sender and receiver IDs in Receive().
- - - - -
af63dccc by Anton Baskanov at 2024-10-29T14:24:32-05:00
dplayx: Make a deep copy of the message.
- - - - -
47929361 by Anton Baskanov at 2024-10-29T14:24:32-05:00
dplayx: Set message data size in Receive().
- - - - -
3 changed files:
- dlls/dplayx/dplay.c
- dlls/dplayx/dplay_global.h
- dlls/dplayx/tests/dplayx.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/39402e49be1a775ef7eb130e036e3…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/39402e49be1a775ef7eb130e036e3…
You're receiving this email because of your account on gitlab.winehq.org.