mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
+ AssetHierarchy: Exposed RootNode
+ ContentBrowserWindow: Fixed Empty Folder not being Leaf-Node
+ TreeNode: Added IsParentOf, IsChildOf and IsInSubtree.
+ Fixed InternalDeleteTreeAndChildren for null trees
17 lines
261 B
HLSL
17 lines
261 B
HLSL
cbuffer Constants : register(b0)
|
|
{
|
|
uint ClearValue;
|
|
}
|
|
|
|
float4 VS(float2 input : POSITION) : SV_Position
|
|
{
|
|
return float4(input, 0.0f, 1.0f);
|
|
}
|
|
|
|
uint PS(float4 input : SV_Position) : SV_Target0
|
|
{
|
|
return ClearValue;
|
|
}
|
|
|
|
#pragma Effect[VS = VS; PS = PS]
|