mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 13:01:42 +00:00
28 lines
325 B
C
28 lines
325 B
C
|
#ifndef __GLES_SAMPLERS_H
|
||
|
#define __GLES_SAMPLERS_H
|
||
|
|
||
|
#include "gles_hwtexture.h"
|
||
|
#include "textures.h"
|
||
|
|
||
|
namespace OpenGLESRenderer
|
||
|
{
|
||
|
|
||
|
|
||
|
class FSamplerManager
|
||
|
{
|
||
|
void UnbindAll();
|
||
|
|
||
|
public:
|
||
|
|
||
|
FSamplerManager();
|
||
|
~FSamplerManager();
|
||
|
|
||
|
uint8_t Bind(int texunit, int num, int lastval);
|
||
|
void SetTextureFilterMode();
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
#endif
|
||
|
|