17 #ifndef HEADER_SUPERTUX_VIDEO_SAMPLER_HPP 18 #define HEADER_SUPERTUX_VIDEO_SAMPLER_HPP 20 #include "math/vector.hpp" 21 #include "video/gl.hpp" 27 Sampler(GLenum filter, GLenum wrap_s, GLenum wrap_t,
const Vector& animate);
32 GLenum get_filter()
const {
return m_filter; }
33 GLenum get_wrap_s()
const {
return m_wrap_s; }
34 GLenum get_wrap_t()
const {
return m_wrap_t; }
35 Vector get_animate()
const {
return m_animate; }
Definition: sampler.hpp:23
Simple two dimensional vector.
Definition: vector.hpp:24