mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-27 18:43:48 +00:00
missing ribbon shaders, empty template
This commit is contained in:
parent
2044b2691e
commit
a100a00c99
2 changed files with 54 additions and 0 deletions
|
|
@ -0,0 +1,20 @@
|
|||
#define IN_HLSL
|
||||
#include "../shdrConsts.h"
|
||||
#include "../torque.hlsl"
|
||||
|
||||
uniform sampler2D ribTex : register(S0);
|
||||
|
||||
struct v2f
|
||||
{
|
||||
|
||||
float2 texCoord : TEXCOORD0;
|
||||
float2 shiftdata : TEXCOORD1;
|
||||
float4 color : COLOR0;
|
||||
};
|
||||
|
||||
float4 main(v2f IN) : COLOR0
|
||||
{
|
||||
float4 Tex = tex2D(ribTex,IN.texCoord);
|
||||
Tex.a *= IN.color.a;
|
||||
return hdrEncode(Tex);
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
#define IN_HLSL
|
||||
#include "../shdrConsts.h"
|
||||
|
||||
struct a2v
|
||||
{
|
||||
float2 texCoord : TEXCOORD0;
|
||||
float2 shiftdata : TEXCOORD1;
|
||||
float3 normal : NORMAL;
|
||||
float4 position : POSITION;
|
||||
float4 color : COLOR0;
|
||||
};
|
||||
|
||||
struct v2f
|
||||
{
|
||||
float4 hpos : POSITION;
|
||||
float2 texCoord : TEXCOORD0;
|
||||
float2 shiftdata : TEXCOORD1;
|
||||
float4 color : COLOR0;
|
||||
};
|
||||
|
||||
uniform float4x4 modelview;
|
||||
uniform float3 eyePos;
|
||||
|
||||
v2f main(a2v IN)
|
||||
{
|
||||
v2f OUT;
|
||||
|
||||
OUT.hpos = mul(modelview, IN.position);
|
||||
OUT.color = IN.color;
|
||||
OUT.texCoord = IN.texCoord;
|
||||
OUT.shiftdata = IN.shiftdata;
|
||||
|
||||
return OUT;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue