Direct3D: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 5: Line 5:
{{goldsrc|4}} engines ships with Software renderer, OpenGL and initially, Direct3D 7, prior to it being removed in 2013 after [[SteamPipe]] update. Unlike OpenGL and like the Software renderer, it doesn't seems to have issues with overbright lighting.
{{goldsrc|4}} engines ships with Software renderer, OpenGL and initially, Direct3D 7, prior to it being removed in 2013 after [[SteamPipe]] update. Unlike OpenGL and like the Software renderer, it doesn't seems to have issues with overbright lighting.


{{source|4}} mainly used Direct3D 9 renderer, but offers backward compability with older GPUs using [[DirectX Versions|DirectX feature levels]], some third-party engine branch like {{tfbranch|1}} and {{strata|1}} used Direct3D 11 renderer instead. Later throughout 2020-2022, nearly all of Valve games also added support for [[Vulkan]] renderer, using DXVK to translates D3D9 to Vulkan.
{{source|4}} mainly used Direct3D 9 renderer, but offers backward compability with older GPUs using [[DirectX Versions|DirectX feature levels]], some third-party engine branch like {{tfbranch|1}} and {{strata|1}} used Direct3D 11 renderer instead. Later throughout 2020-2022, nearly all of Valve games also added support for [[Vulkan]] renderer, using DXVK to translates D3D9 to Vulkan. Enabling Vulkan translation will require the "{{code|-vulkan}}" launch option (except {{portalrtx|3}}).


{{source2|4}} mainly used Direct3D 11 renderer, but also have a options to use the [[Vulkan]] renderer.
{{source2|4}} mainly used Direct3D 11 renderer, but also have a options to use the [[Vulkan]] renderer.

Revision as of 04:31, 9 July 2023

English (en)Português do Brasil (pt-br)Translate (Translate)

Direct3D is a graphics application programming interface (API) for Windows Microsoft Windows. It is part of Wikipedia icon DirectX.

GoldSrc GoldSrc engines ships with Software renderer, OpenGL and initially, Direct3D 7, prior to it being removed in 2013 after SteamPipe update. Unlike OpenGL and like the Software renderer, it doesn't seems to have issues with overbright lighting.

Source Source mainly used Direct3D 9 renderer, but offers backward compability with older GPUs using DirectX feature levels, some third-party engine branch like Titanfall branch and Strata Source used Direct3D 11 renderer instead. Later throughout 2020-2022, nearly all of Valve games also added support for Vulkan renderer, using DXVK to translates D3D9 to Vulkan. Enabling Vulkan translation will require the "-vulkan" launch option (except Portal with RTX).

Source 2 Source 2 mainly used Direct3D 11 renderer, but also have a options to use the Vulkan renderer.

See Also