19 lines
186 B
Plaintext
19 lines
186 B
Plaintext
#pragma once
|
|
|
|
struct VertexOutput
|
|
{
|
|
float4 position: SV_Position;
|
|
}
|
|
#include "shader_base.h"
|
|
|
|
DECLARE_CONSTANTS()
|
|
{
|
|
uint2 resolution;
|
|
uint2 size;
|
|
int2 position;
|
|
float4 color;
|
|
};
|
|
|
|
|
|
|