mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-14 16:40:40 +00:00
ea08fa0a4e
Most of what got added is still unused. # Conflicts: # source/build/src/palette.cpp # Conflicts: # source/build/src/palette.cpp # Conflicts: # source/common/engine/i_interface.h
32 lines
515 B
C
32 lines
515 B
C
#pragma once
|
|
|
|
enum class PostProcessUniformType
|
|
{
|
|
Undefined,
|
|
Int,
|
|
Float,
|
|
Vec2,
|
|
Vec3
|
|
};
|
|
|
|
struct PostProcessUniformValue
|
|
{
|
|
PostProcessUniformType Type = PostProcessUniformType::Undefined;
|
|
double Values[4] = { 0.0, 0.0, 0.0, 0.0 };
|
|
};
|
|
|
|
struct PostProcessShader
|
|
{
|
|
FString Target;
|
|
FString ShaderLumpName;
|
|
int ShaderVersion = 0;
|
|
|
|
FString Name;
|
|
bool Enabled = false;
|
|
|
|
TMap<FString, PostProcessUniformValue> Uniforms;
|
|
TMap<FString, FString> Textures;
|
|
};
|
|
|
|
extern TArray<PostProcessShader> PostProcessShaders;
|
|
|