2023-03-14 09:29:04 -07:00
|
|
|
The Wine team is proud to announce that release 1.7 of vkd3d, the Direct3D to
|
2020-09-21 15:35:48 -07:00
|
|
|
Vulkan translation library, is now available.
|
2018-05-23 10:19:15 -07:00
|
|
|
|
2018-10-05 09:26:13 -07:00
|
|
|
This release contains improvements that are listed in the release notes below.
|
|
|
|
The main highlights are:
|
|
|
|
|
2023-03-14 09:29:04 -07:00
|
|
|
- Support for many more HLSL features and intrinsics.
|
|
|
|
- Much improved support for the Direct3D shader model 1/2/3 HLSL profiles.
|
|
|
|
- Public vkd3d-shader API for parsing and serialising DXBC blobs.
|
2022-09-19 04:11:09 -07:00
|
|
|
- Miscellaneous bug fixes.
|
2018-05-23 10:19:15 -07:00
|
|
|
|
|
|
|
The source is available from the following location:
|
|
|
|
|
2023-03-14 09:29:04 -07:00
|
|
|
https://dl.winehq.org/vkd3d/source/vkd3d-1.7.tar.xz
|
2018-05-23 10:19:15 -07:00
|
|
|
|
|
|
|
The current source can also be pulled directly from the git repository:
|
|
|
|
|
2022-09-19 04:11:09 -07:00
|
|
|
https://gitlab.winehq.org/wine/vkd3d.git
|
2018-05-23 10:19:15 -07:00
|
|
|
|
|
|
|
Vkd3d is available thanks to the work of multiple people. See the file AUTHORS
|
|
|
|
for the complete list.
|
|
|
|
|
|
|
|
----------------------------------------------------------------
|
|
|
|
|
2023-03-14 09:29:04 -07:00
|
|
|
What's new in vkd3d 1.7
|
2018-10-05 09:26:13 -07:00
|
|
|
=======================
|
2018-05-23 10:19:15 -07:00
|
|
|
|
|
|
|
|
2020-09-21 15:35:48 -07:00
|
|
|
*** libvkd3d-shader
|
2018-10-05 09:26:13 -07:00
|
|
|
|
2022-06-22 07:09:04 -07:00
|
|
|
- New features for the HLSL source type:
|
2023-03-14 09:29:04 -07:00
|
|
|
- Support for calling user-defined functions.
|
|
|
|
- Support for array parameters to user-defined functions.
|
|
|
|
- Much improved support for the Direct3D shader model 1/2/3 profiles.
|
|
|
|
- Support for the SV_DispatchThreadID, SV_GroupID, and SV_GroupThreadID
|
|
|
|
compute shader system-value semantics.
|
|
|
|
- Support for the optional "offset" parameter of the texture object Load()
|
|
|
|
method.
|
|
|
|
- Support for the all() intrinsic function.
|
|
|
|
- Support for the distance() intrinsic function.
|
|
|
|
- Support for the exp() and exp2() intrinsic functions.
|
|
|
|
- Support for the frac() intrinsic function.
|
|
|
|
- Support for the lit() intrinsic function.
|
|
|
|
- Support for the reflect() intrinsic function.
|
|
|
|
- Support for the sin() and cos() intrinsic functions.
|
|
|
|
- Support for the smoothstep() intrinsic function.
|
|
|
|
- Support for the sqrt() and rsqrt() intrinsic functions.
|
|
|
|
- Support for the step() intrinsic function.
|
|
|
|
- Support for the transpose() intrinsic function.
|
|
|
|
- Support for the case-insensitive variants of the "float" and "dword" data
|
|
|
|
types.
|
|
|
|
- Partial support for minimum precision data types like "min16float". These
|
|
|
|
are currently interpreted as their regular counterparts.
|
|
|
|
- Improved constant propagation support, in particular to constant
|
|
|
|
propagation through swizzles.
|
|
|
|
|
|
|
|
- HLSL static variables are now properly zero-initialised.
|
|
|
|
|
|
|
|
- The Direct3D shader model 4 and 5 disassembler outputs sample counts for
|
|
|
|
multi-sampled resource declarations.
|
2022-06-22 07:09:04 -07:00
|
|
|
|
|
|
|
- New interfaces:
|
2023-03-14 09:29:04 -07:00
|
|
|
- vkd3d_shader_parse_dxbc() provides support for parsing DXBC blobs.
|
|
|
|
- vkd3d_shader_serialize_dxbc() provides support for serialising DXBC blobs.
|
|
|
|
- vkd3d_shader_free_dxbc() is used to free vkd3d_shader_dxbc_desc
|
|
|
|
structures, as returned by vkd3d_shader_parse_dxbc().
|
|
|
|
- The VKD3D_SHADER_COMPILE_OPTION_WRITE_TESS_GEOM_POINT_SIZE compile option
|
|
|
|
can be used to specify whether SPIR-V shaders targeting Vulkan
|
|
|
|
environments should write point sizes for geometry and tessellation
|
|
|
|
shaders. If left unspecified, point sizes will be written.
|