7 lines
114 B
GLSL
7 lines
114 B
GLSL
#include "common.h"
|
|
|
|
float4 main ( float4 P: POSITION ) : SV_Position
|
|
{
|
|
return mul ( m_WVP, P );
|
|
}
|
|
FXVS;
|