From 94650e716ee54f08f5858cfbf704a71045eeb0a1 Mon Sep 17 00:00:00 2001 From: fincs Date: Fri, 12 Dec 2014 22:29:40 +0100 Subject: [PATCH] Manual.md: some minor fixes --- Manual.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Manual.md b/Manual.md index 9ad1c69..915103a 100644 --- a/Manual.md +++ b/Manual.md @@ -67,9 +67,9 @@ Introduces a procedure called `procName`. The procedure is terminated with `.end ### .else ``` -.proc +.else ``` -Introduces the ELSE block of an IF statement. +Introduces the ELSE section of an IF statement. ### .end ``` @@ -143,6 +143,14 @@ Allocates a new output register, wires it to a certain output property and creat - `texcoord1` (or `tcoord1`): As above, but for the Texture Unit 1. - `texcoord2` (or `tcoord2`): As above, but for the Texture Unit 2. +Example: + +``` +.out outPos position +.out outClr color +.out outTex texcoord0 +``` + ## Supported Instructions See [Shader Instruction Set](http://3dbrew.org/wiki/Shader_Instruction_Set) for more details.