mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 13:31:27 +00:00
42 lines
829 B
C
42 lines
829 B
C
|
#ifndef __GL_POSTPROCESSSTATE_H
|
||
|
#define __GL_POSTPROCESSSTATE_H
|
||
|
|
||
|
#include <string.h>
|
||
|
#include "gl_load/gl_interface.h"
|
||
|
#include "matrix.h"
|
||
|
#include "c_cvars.h"
|
||
|
|
||
|
namespace OpenGLRenderer
|
||
|
{
|
||
|
|
||
|
class FGLPostProcessState
|
||
|
{
|
||
|
public:
|
||
|
FGLPostProcessState();
|
||
|
~FGLPostProcessState();
|
||
|
|
||
|
void SaveTextureBindings(unsigned int numUnits);
|
||
|
|
||
|
private:
|
||
|
FGLPostProcessState(const FGLPostProcessState &) = delete;
|
||
|
FGLPostProcessState &operator=(const FGLPostProcessState &) = delete;
|
||
|
|
||
|
GLint activeTex;
|
||
|
TArray<GLint> textureBinding;
|
||
|
TArray<GLint> samplerBinding;
|
||
|
GLboolean blendEnabled;
|
||
|
GLboolean scissorEnabled;
|
||
|
GLboolean depthEnabled;
|
||
|
GLboolean multisampleEnabled;
|
||
|
GLint currentProgram;
|
||
|
GLint blendEquationRgb;
|
||
|
GLint blendEquationAlpha;
|
||
|
GLint blendSrcRgb;
|
||
|
GLint blendSrcAlpha;
|
||
|
GLint blendDestRgb;
|
||
|
GLint blendDestAlpha;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
#endif
|