mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
12 lines
238 B
Cheetah
12 lines
238 B
Cheetah
I: correct-logic.qc
|
|
D: vector logic flags
|
|
T: -execute
|
|
C: -std=fteqcc
|
|
M: ! & | i N
|
|
M: 0, 0 -> 1 0 0 0 1
|
|
M: 0, x -> 1 0 1 0 1
|
|
M: x, 0 -> 0 0 1 1 0
|
|
M: x, x -> 0 1 1 1 0
|
|
M: 0, y -> 1 0 0 0 1
|
|
M: y, 0 -> 0 0 0 0 1
|
|
M: y, y -> 0 0 0 0 1
|