Sync SDL3 wiki -> header

[ci skip]
This commit is contained in:
SDL Wiki Bot 2025-04-22 21:34:48 +00:00
parent 5a8be8e4c2
commit 727a5fae59

View file

@ -253,16 +253,15 @@
* The GPU API uses a left-handed coordinate system, following the convention * The GPU API uses a left-handed coordinate system, following the convention
* of D3D12 and Metal. Specifically: * of D3D12 and Metal. Specifically:
* *
* - **Normalized Device Coordinates:** The * - **Normalized Device Coordinates:** The lower-left corner has an x,y
* lower-left corner has an x,y coordinate of `(-1.0, -1.0)`. The upper-right * coordinate of `(-1.0, -1.0)`. The upper-right corner is `(1.0, 1.0)`. Z
* corner is `(1.0, 1.0)`. Z values range from `[0.0, 1.0]` where 0 is the * values range from `[0.0, 1.0]` where 0 is the near plane.
* near plane. * - **Viewport Coordinates:** The top-left corner has an x,y coordinate of
* - **Viewport Coordinates:** The top-left corner has an x,y * `(0, 0)` and extends to the bottom-right corner at `(viewportWidth,
* coordinate of `(0, 0)` and extends to the bottom-right corner at * viewportHeight)`. +Y is down.
* `(viewportWidth, viewportHeight)`. +Y is down. * - **Texture Coordinates:** The top-left corner has an x,y coordinate of
* - **Texture Coordinates:** * `(0, 0)` and extends to the bottom-right corner at `(1.0, 1.0)`. +Y is
* The top-left corner has an x,y coordinate of `(0, 0)` and extends to the * down.
* bottom-right corner at `(1.0, 1.0)`. +Y is down.
* *
* If the backend driver differs from this convention (e.g. Vulkan, which has * If the backend driver differs from this convention (e.g. Vulkan, which has
* an NDC that assumes +Y is down), SDL will automatically convert the * an NDC that assumes +Y is down), SDL will automatically convert the