mov
|
0x00
|
move
|
покомпонентно перемещает данные из source1 в destination.
|
add
|
0x01
|
add
|
destination = source1 + source2, покомпонентно
|
sub
|
0x02
|
subtract
|
destination = source1 - source2, покомпонентно
|
mul
|
0x03
|
multiply
|
destination = source1 * source2, покомпонентно
|
div
|
0x04
|
divide
|
destination = source1 / source2, покомпонентно
|
rcp
|
0x05
|
reciprocal
|
destination = 1/source1, покомпонентно
|
min
|
0x06
|
minimum
|
destination = minimum(source1,source2), покомпонентно
|
max
|
0x07
|
maximum
|
destination = maximum(source1,source2), покомпонентно
|
frc
|
0x08
|
fractional
|
destination = source1 - (float)floor(source1), покомпонентно
|
sqt
|
0x09
|
square root
|
destination = sqrt(source1), покомпонентно
|
rsq
|
0x0a
|
reciprocal root
|
destination = 1/sqrt(source1), покомпонентно
|
pow
|
0x0b
|
power
|
destination = pow(source1,source2), покомпонентно
|
log
|
0x0c
|
logarithm
|
destination = log_2(source1), покомпонентно
|
exp
|
0x0d
|
exponential
|
destination = 2^source1, покомпонентно
|
nrm
|
0x0e
|
normalize
|
destination = normalize(source1), покомпонентно (дает только трехкомпонентный результат, целевой элемент должен быть замаскирован как .xyz или меньше)
|
sin
|
0x0f
|
sine
|
destination = sin(source1), покомпонентно
|
cos
|
0x10
|
cosine
|
destination = cos(source1), покомпонентно
|
crs
|
0x11
|
cross product
|
destination.x = source1.y * source2.z - source1.z * source2.y
destination.y = source1.z * source2.x - source1.x * source2.z
destination.z = source1.x * source2.y - source1.y * source2.x
(дает только трехкомпонентный результат, целевой элемент должен быть замаскирован как .xyz или меньше)
|
dp3
|
0x12
|
dot product
|
destination = source1.x*source2.x + source1.y*source2.y + source1.z*source2.z
|
dp4
|
0x13
|
dot product
|
destination = source1.x*source2.x + source1.y*source2.y + source1.z*source2.z + source1.w*source2.w
|
abs
|
0x14
|
absolute
|
destination = abs(source1), покомпонентно
|
neg
|
0x15
|
negate
|
destination = -source1, покомпонентно
|
sat
|
0x16
|
saturate
|
destination = maximum(minimum(source1,1),0), покомпонентно
|
m33
|
0x17
|
multiply matrix 3x3
|
destination.x = (source1.x * source2[0].x) + (source1.y * source2[0].y) + (source1.z * source2[0].z)
destination.y = (source1.x * source2[1].x) + (source1.y * source2[1].y) + (source1.z * source2[1].z)
destination.z = (source1.x * source2[2].x) + (source1.y * source2[2].y) + (source1.z * source2[2].z)
(дает только трехкомпонентный результат, целевой элемент должен быть замаскирован как .xyz или меньше)
|
m44
|
0x18
|
multiply matrix 4x4
|
destination.x = (source1.x * source2[0].x) + (source1.y * source2[0].y) + (source1.z * source2[0].z) + (source1.w * source2[0].w)
destination.y = (source1.x * source2[1].x) + (source1.y * source2[1].y) + (source1.z * source2[1].z) + (source1.w * source2[1].w)
destination.z = (source1.x * source2[2].x) + (source1.y * source2[2].y) + (source1.z * source2[2].z) + (source1.w * source2[2].w)
destination.w = (source1.x * source2[3].x) + (source1.y * source2[3].y) + (source1.z * source2[3].z) + (source1.w * source2[3].w)
|
m34
|
0x19
|
multiply matrix 3x4
|
destination.x = (source1.x * source2[0].x) + (source1.y * source2[0].y) + (source1.z * source2[0].z) + (source1.w * source2[0].w)
destination.y = (source1.x * source2[1].x) + (source1.y * source2[1].y) + (source1.z * source2[1].z) + (source1.w * source2[1].w)
destination.z = (source1.x * source2[2].x) + (source1.y * source2[2].y) + (source1.z * source2[2].z) + (source1.w * source2[2].w)
(дает только трехкомпонентный результат, целевой элемент должен быть замаскирован как .xyz или меньше)
|
kil
|
0x27
|
kill/discard (только для фрагментного шейдера)
|
Если единственный скалярный исходный компонент меньше нуля, фрагмент игнорируется и не отрисовывается в буфере кадра. (Для целевого реестра должны быть заданы все нули)
|
tex
|
0x28
|
texture sample (только для фрагментного шейдера)
|
destination выравнивает нагрузку от текстуры source2 с координатами source1. В этом случае source2 должен быть в формате образца.
|
sge
|
0x29
|
set-if-greater-equal
|
destination = source1 >= source2 ? 1 : 0, покомпонентно
|
slt
|
0x2a
|
set-if-less-than
|
destination = source1 < source2 ? 1 : 0, покомпонентно
|
seq
|
0x2c
|
set-if-equal
|
destination = source1 == source2 ? 1 : 0, покомпонентно
|
sne
|
0x2d
|
set-if-not-equal
|
destination = source1 != source2 ? 1 : 0, покомпонентно
|