Lines Matching defs:height
138 * @param height Texture height
141 glw::GLuint height)
154 gl.viewport(0 /* x */, 0 /* y */, width, height);
695 * @param height Height of texture
698 void Utils::texture::create(glw::GLuint width, glw::GLuint height, glw::GLenum internal_format)
707 gl.texStorage2D(GL_TEXTURE_2D, 1 /* levels */, internal_format, width, height);
730 * @param height Height of texture
735 void Utils::texture::update(glw::GLuint width, glw::GLuint height, glw::GLenum format, glw::GLenum type,
742 gl.texSubImage2D(GL_TEXTURE_2D, 0 /* level */, 0 /* x */, 0 /* y */, width, height, format, type, data);