Lines Matching refs:baseInternalFormat
283 (void) ctx; (void) dims; (void) baseInternalFormat; in _mesa_texstore_ycbcr()
292 assert(baseInternalFormat == GL_YCBCR_MESA); in _mesa_texstore_ycbcr()
605 return table[dstFormat](ctx, dims, baseInternalFormat, in texstore_depth_stencil()
665 return table[dstFormat](ctx, dims, baseInternalFormat, in texstore_compressed()
685 return _mesa_texstore_ycbcr(ctx, dims, baseInternalFormat, in texstore_rgba()
762 _mesa_texstore_needs_transfer_ops(ctx, baseInternalFormat, dstFormat)) { in texstore_rgba()
802 if (_mesa_get_format_base_format(dstFormat) != baseInternalFormat) { in texstore_rgba()
804 _mesa_compute_rgba2base2rgba_component_mapping(baseInternalFormat, in texstore_rgba()
826 GLenum baseInternalFormat, in _mesa_texstore_needs_transfer_ops() argument
832 switch (baseInternalFormat) { in _mesa_texstore_needs_transfer_ops()
856 GLenum baseInternalFormat, mesa_format dstFormat, in _mesa_texstore_can_use_memcpy() argument
860 if (_mesa_texstore_needs_transfer_ops(ctx, baseInternalFormat, dstFormat)) { in _mesa_texstore_can_use_memcpy()
865 if (baseInternalFormat != _mesa_get_format_base_format(dstFormat)) { in _mesa_texstore_can_use_memcpy()
883 if ((baseInternalFormat == GL_DEPTH_COMPONENT || in _mesa_texstore_can_use_memcpy()
884 baseInternalFormat == GL_DEPTH_STENCIL) && in _mesa_texstore_can_use_memcpy()
896 if (!_mesa_texstore_can_use_memcpy(ctx, baseInternalFormat, dstFormat, in _mesa_texstore_memcpy()
918 if (_mesa_texstore_memcpy(ctx, dims, baseInternalFormat, in _mesa_texstore()
926 if (_mesa_is_depth_or_stencil_format(baseInternalFormat)) { in _mesa_texstore()
927 return texstore_depth_stencil(ctx, dims, baseInternalFormat, in _mesa_texstore()
932 return texstore_compressed(ctx, dims, baseInternalFormat, in _mesa_texstore()
937 return texstore_rgba(ctx, dims, baseInternalFormat, in _mesa_texstore()