From 671fb57daf4972fcd506689a48a474dd4eda9e66 Mon Sep 17 00:00:00 2001 From: nixflorp Date: Fri, 5 Sep 2025 14:49:31 -0400 Subject: [PATCH] docs: Fix Rendering Graphics documentation --- docs/sphinx/graphics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sphinx/graphics.rst b/docs/sphinx/graphics.rst index ec085ad23..89db357d2 100644 --- a/docs/sphinx/graphics.rst +++ b/docs/sphinx/graphics.rst @@ -265,8 +265,8 @@ would be used: uniform texture2d image; struct VertInOut { - float4 my_position : POSITION; - float2 my_texcoord : TEXCOORD0; + float4 pos : POSITION; + float2 uv : TEXCOORD0; }; VertInOut MyVertexShaderFunc(VertInOut vert_in)