mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
ad4527c8be
As long as there are still video mode switches this needs to be in the video mode switching function.
42 lines
648 B
C++
42 lines
648 B
C++
#ifndef __GL_SAMPLERS_H
|
|
#define __GL_SAMPLERS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
enum ESampler
|
|
{
|
|
NoSampler = -1,
|
|
SamplerRepeat,
|
|
SamplerClampX,
|
|
SamplerClampY,
|
|
SamplerClampXY,
|
|
Sampler2D,
|
|
SamplerNoFilter,
|
|
Sampler2DFiltered,
|
|
Sampler2DNoFilter,
|
|
NumSamplers
|
|
};
|
|
|
|
|
|
class FSamplerManager
|
|
{
|
|
// We need 6 different samplers: 4 for the different clamping modes,
|
|
// one for 2D-textures and one for voxel textures
|
|
unsigned int mSamplers[NumSamplers];
|
|
|
|
void UnbindAll();
|
|
void CreateSamplers();
|
|
|
|
public:
|
|
|
|
FSamplerManager();
|
|
~FSamplerManager();
|
|
|
|
uint8_t Bind(int texunit, int num, int lastval);
|
|
void SetTextureFilterMode(int mode, int aniso);
|
|
|
|
|
|
};
|
|
|
|
#endif
|
|
|