Manual.md: some minor fixes

This commit is contained in:
fincs 2014-12-12 22:29:40 +01:00
parent 125b6718e7
commit 94650e716e

View File

@ -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.