mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-28 16:41:52 +08:00
init
This commit is contained in:
15
libs/hwcodec/dev/vs/ShaderCompileTool/nv_vertex_shader.hlsl
Normal file
15
libs/hwcodec/dev/vs/ShaderCompileTool/nv_vertex_shader.hlsl
Normal file
@@ -0,0 +1,15 @@
|
||||
struct VS_INPUT
|
||||
{
|
||||
float4 Pos : POSITION;
|
||||
float2 Tex : TEXCOORD;
|
||||
};
|
||||
|
||||
struct VS_OUTPUT
|
||||
{
|
||||
float4 Pos : SV_POSITION;
|
||||
float2 Tex : TEXCOORD;
|
||||
};
|
||||
VS_OUTPUT VS(VS_INPUT input)
|
||||
{
|
||||
return input;
|
||||
}
|
||||
Reference in New Issue
Block a user