mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
30 lines
331 B
C
30 lines
331 B
C
|
#ifndef __GL_SAMPLERS_H
|
||
|
#define __GL_SAMPLERS_H
|
||
|
|
||
|
#include "textures.h"
|
||
|
|
||
|
namespace OpenGLRenderer
|
||
|
{
|
||
|
|
||
|
|
||
|
class FSamplerManager
|
||
|
{
|
||
|
unsigned int mSamplers[NUMSAMPLERS];
|
||
|
|
||
|
void UnbindAll();
|
||
|
|
||
|
public:
|
||
|
|
||
|
FSamplerManager();
|
||
|
~FSamplerManager();
|
||
|
|
||
|
uint8_t Bind(int texunit, int num, int lastval);
|
||
|
void SetTextureFilterMode();
|
||
|
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
#endif
|
||
|
|