Lines Matching defs:internal_format
18533 * @param internal_format Internal format of texture
18535 void Utils::texture::create(glw::GLuint width, glw::GLuint height, glw::GLenum internal_format)
18548 gl.texStorage2D(GL_TEXTURE_2D, 1 /* levels */, internal_format, width, height);
18557 * @param internal_format Internal format of texture
18560 void Utils::texture::create(GLuint width, GLuint height, GLuint depth, GLenum internal_format,
18581 gl.texStorage1D(target, levels, internal_format, width);
18588 gl.texStorage2D(target, levels, internal_format, width, height);
18593 gl.texStorage3D(target, levels, internal_format, width, height, depth);
18603 * @param internal_format Internal format of texture
18606 void Utils::texture::createBuffer(GLenum internal_format, GLuint buffer_id)
18620 gl.texBuffer(GL_TEXTURE_BUFFER, internal_format, buffer_id);