mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
de829128ea
compiles but not tested yet.
44 lines
1,002 B
C++
44 lines
1,002 B
C++
#pragma once
|
|
|
|
#include "PalEntry.h"
|
|
#include "gl_buffers.h"
|
|
class PolymostShader;
|
|
|
|
enum PRSFlags
|
|
{
|
|
RF_ColorOnly = 1,
|
|
RF_UsePalette = 2,
|
|
RF_DetailMapping = 4,
|
|
RF_GlowMapping = 8,
|
|
RF_Brightmapping = 16,
|
|
RF_NPOTEmulation = 32,
|
|
RF_ShadeInterpolate = 64,
|
|
RF_FogDisabled = 128,
|
|
|
|
RF_HICTINT_Grayscale = 0x10000,
|
|
RF_HICTINT_Invert = 0x20000,
|
|
RF_HICTINT_Colorize = 0x40000,
|
|
RF_HICTINT_BLEND_Screen = 0x80000,
|
|
RF_HICTINT_BLEND_Overlay = 0x100000,
|
|
RF_HICTINT_BLEND_Hardlight = 0x200000,
|
|
RF_HICTINT_BLENDMASK = RF_HICTINT_BLEND_Screen | RF_HICTINT_BLEND_Overlay | RF_HICTINT_BLEND_Hardlight,
|
|
};
|
|
|
|
struct PolymostRenderState
|
|
{
|
|
float Shade;
|
|
float NumShades = 64.f;
|
|
float ShadeDiv = 62.f;
|
|
float VisFactor = 128.f;
|
|
int Flags = 0;
|
|
float NPOTEmulationFactor = 1.f;
|
|
float NPOTEmulationXOffset;
|
|
float Brightness = 1.f;
|
|
PalEntry FogColor;
|
|
|
|
IVertexBuffer* VertexBuffer = nullptr;
|
|
int VB_Offset[2] = {};
|
|
IIndexBuffer* IndexBuffer = nullptr;
|
|
|
|
void Apply(PolymostShader *shader);
|
|
};
|