Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/gpu/opengl/gl_texture.hh')
-rw-r--r--source/blender/gpu/opengl/gl_texture.hh7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/gpu/opengl/gl_texture.hh b/source/blender/gpu/opengl/gl_texture.hh
index 0e054d7996a..36da89dad8e 100644
--- a/source/blender/gpu/opengl/gl_texture.hh
+++ b/source/blender/gpu/opengl/gl_texture.hh
@@ -58,6 +58,9 @@ class GLTexture : public Texture {
friend class GLStateManager;
private:
+ /** All samplers states. */
+ static GLuint samplers_[GPU_SAMPLER_MAX];
+
/** Target to bind the texture to (GL_TEXTURE_1D, GL_TEXTURE_2D, etc...)*/
GLenum target_ = -1;
/** opengl identifier for texture. */
@@ -85,6 +88,10 @@ class GLTexture : public Texture {
/* TODO(fclem) Legacy. Should be removed at some point. */
uint gl_bindcode_get(void) const override;
+ static void samplers_init(void);
+ static void samplers_free(void);
+ static void samplers_update(void);
+
protected:
bool init_internal(void) override;
bool init_internal(GPUVertBuf *vbo) override;