Lines Matching defs:internal_format
1804 * @param internal_format Internal format to be found
1808 size_t get_index_of_format(glw::GLenum internal_format)
1810 if (GL_ZERO == internal_format)
1817 if (texture_formats[i].m_internal_format == internal_format)
1946 /** Gets internal_format of output channel for given texture format
3453 const glw::GLenum internal_format = texture_format.m_internal_format;
3477 gl.texImage1D(target, level, internal_format, m_width, border, format, type, 0 /* pixels */);
3486 gl.texImage2D(target, level, internal_format, m_width, m_height, border, format, type, 0 /* pixels */);
3494 gl.texImage3D(target, level, internal_format, m_width, m_height, m_depth, border, format, type, 0 /* pixels */);
3503 gl.texImage2D(cube_map_faces[i], level, internal_format, m_width, m_height, border, format, type,
3514 gl.texImage2DMultisample(target, samples, internal_format, m_width, m_height,
3522 gl.texImage3DMultisample(target, samples, internal_format, m_width, m_height, m_depth,
3560 switch (internal_format)