This instruction prepares a vector for vs_3_0-style lighting by clamping
to certain bounds.
This commit is contained in:
Tillmann Karras 2017-12-17 16:09:47 +00:00 committed by fincs
parent 0629de23e0
commit 89deb50e23
3 changed files with 3 additions and 1 deletions

View File

@ -310,6 +310,7 @@ Syntax | Description
`min rDest, rSrc1, rSrc2` |
`ex2 rDest, rSrc1` |
`lg2 rDest, rSrc1` |
`litp rDest, rSrc1` |
`flr rDest, rSrc1` |
`rcp rDest, rSrc1` |
`rsq rDest, rSrc1` |

View File

@ -8,7 +8,7 @@ enum
MAESTRO_DST,
MAESTRO_EX2,
MAESTRO_LG2,
MAESTRO_unk7,
MAESTRO_LITP,
MAESTRO_MUL,
MAESTRO_SGE,
MAESTRO_SLT,

View File

@ -1256,6 +1256,7 @@ static const cmdTableType cmdTable[] =
DEC_COMMAND(EX2, format1u),
DEC_COMMAND(LG2, format1u),
DEC_COMMAND(LITP, format1u),
DEC_COMMAND(FLR, format1u),
DEC_COMMAND(RCP, format1u),
DEC_COMMAND(RSQ, format1u),