1
; part of the Irrlicht Engine Shader example.
2
; This simple Direct3D9 pixel shader will be loaded by the engine.
3
; Please note that these example shaders don't do anything really useful.
4
; They only demonstrate that shaders can be used in Irrlicht.
8
tex t0 ; sample color map
9
mul_x2 t0, t0, v0 ; mulitply with color
10
add r0, t0, t0 ; make it brighter and store result