From c69dbe9d8114cd6718f02f892f8d7dda23687de1 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Wed, 19 Oct 2022 15:38:32 +0200 Subject: [PATCH] docs/tgsi: always use uppercase for instruction names This reads a bit cleaner. Reviewed-by: Eric Engestrom Part-of: --- docs/gallium/tgsi.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/gallium/tgsi.rst b/docs/gallium/tgsi.rst index 1b02d31e648..183444e74da 100644 --- a/docs/gallium/tgsi.rst +++ b/docs/gallium/tgsi.rst @@ -1663,7 +1663,7 @@ Some require glsl version 1.30 (UIF/SWITCH/CASE/DEFAULT/ENDSWITCH). .. opcode:: CONT - Continue Unconditionally moves the point of execution to the instruction after the - last bgnloop. The instruction must appear within a bgnloop/endloop. + last BGNLOOP. The instruction must appear within a BGNLOOP/ENDLOOP. .. note:: @@ -1673,17 +1673,17 @@ Some require glsl version 1.30 (UIF/SWITCH/CASE/DEFAULT/ENDSWITCH). .. opcode:: BGNLOOP - Begin a Loop - Start a loop. Must have a matching endloop. + Start a loop. Must have a matching ENDLOOP. .. opcode:: BGNSUB - Begin Subroutine - Starts definition of a subroutine. Must have a matching endsub. + Starts definition of a subroutine. Must have a matching ENDSUB. .. opcode:: ENDLOOP - End a Loop - End a loop started with bgnloop. + End a loop started with BGNLOOP. .. opcode:: ENDSUB - End Subroutine @@ -1699,8 +1699,8 @@ Some require glsl version 1.30 (UIF/SWITCH/CASE/DEFAULT/ENDSWITCH). .. opcode:: BRK - Break Unconditionally moves the point of execution to the instruction after the - next endloop or endswitch. The instruction must appear within a loop/endloop - or switch/endswitch. + next ENDLOOP or ENDSWITCH. The instruction must appear within a + BGNLOOP/ENDLOOP or SWITCH/ENDSWITCH. .. opcode:: IF - Float If