init
This commit is contained in:
commit
2fe6ca2f65
1473 changed files with 251771 additions and 0 deletions
13
gamedata/shaders/d3d11/accum_volume.vs.hlsl
Normal file
13
gamedata/shaders/d3d11/accum_volume.vs.hlsl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#include "common.hlsli"
|
||||
|
||||
uniform float4x4 m_texgen;
|
||||
|
||||
// Vertex
|
||||
v2p_volume main(float4 P : POSITION)
|
||||
{
|
||||
v2p_volume O;
|
||||
O.hpos = mul(m_WVP, P);
|
||||
O.tc = mul(m_texgen, P);
|
||||
return O;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue