• Home
  • Raw
  • Download

Lines Matching refs:internalformat

221                                   GLenum internalformat)  in _mesa_is_legal_tex_storage_format()  argument
224 switch (internalformat) { in _mesa_is_legal_tex_storage_format()
259 return _mesa_base_tex_format(ctx, internalformat) > 0; in _mesa_is_legal_tex_storage_format()
275 GLsizei levels, GLenum internalformat, in tex_storage_error_check() argument
293 if (_mesa_is_compressed_format(ctx, internalformat)) { in tex_storage_error_check()
295 if (!_mesa_target_can_be_compressed(ctx, target, internalformat, &err)) { in tex_storage_error_check()
298 _mesa_enum_to_string(internalformat)); in tex_storage_error_check()
343 if (!_mesa_legal_texture_base_format_for_target(ctx, target, internalformat)) { in tex_storage_error_check()
439 GLsizei levels, GLenum internalformat, GLsizei width, in texture_storage() argument
452 internalformat, width, height, depth, dsa)) { in texture_storage()
458 internalformat, GL_NONE, GL_NONE); in texture_storage()
472 internalformat, texFormat); in texture_storage()
510 internalformat, texFormat)) { in texture_storage()
551 GLenum internalformat, GLsizei width, in texture_storage_error() argument
554 texture_storage(ctx, dims, texObj, NULL, target, levels, internalformat, in texture_storage_error()
563 GLenum internalformat, GLsizei width, in texture_storage_no_error() argument
566 texture_storage(ctx, dims, texObj, NULL, target, levels, internalformat, in texture_storage_no_error()
576 GLenum internalformat, GLsizei width, GLsizei height, in texstorage_error() argument
595 _mesa_enum_to_string(internalformat), in texstorage_error()
599 if (!_mesa_is_legal_tex_storage_format(ctx, internalformat)) { in texstorage_error()
602 _mesa_enum_to_string(internalformat)); in texstorage_error()
611 internalformat, width, height, depth, false); in texstorage_error()
617 GLenum internalformat, GLsizei width, GLsizei height, in texstorage_no_error() argument
624 internalformat, width, height, depth, false); in texstorage_no_error()
633 GLenum internalformat, GLsizei width, GLsizei height, in texturestorage_error() argument
642 _mesa_enum_to_string(internalformat), in texturestorage_error()
646 if (!_mesa_is_legal_tex_storage_format(ctx, internalformat)) { in texturestorage_error()
649 _mesa_enum_to_string(internalformat)); in texturestorage_error()
668 levels, internalformat, width, height, depth, true); in texturestorage_error()
674 GLenum internalformat, GLsizei width, GLsizei height, in texturestorage_no_error() argument
681 levels, internalformat, width, height, depth, true); in texturestorage_no_error()
687 GLenum internalformat, GLsizei width) in _mesa_TexStorage1D_no_error() argument
689 texstorage_no_error(1, target, levels, internalformat, width, 1, 1); in _mesa_TexStorage1D_no_error()
694 _mesa_TexStorage1D(GLenum target, GLsizei levels, GLenum internalformat, in _mesa_TexStorage1D() argument
697 texstorage_error(1, target, levels, internalformat, width, 1, 1, in _mesa_TexStorage1D()
704 GLenum internalformat, GLsizei width, in _mesa_TexStorage2D_no_error() argument
707 texstorage_no_error(2, target, levels, internalformat, width, height, 1); in _mesa_TexStorage2D_no_error()
712 _mesa_TexStorage2D(GLenum target, GLsizei levels, GLenum internalformat, in _mesa_TexStorage2D() argument
715 texstorage_error(2, target, levels, internalformat, width, height, 1, in _mesa_TexStorage2D()
722 GLenum internalformat, GLsizei width, in _mesa_TexStorage3D_no_error() argument
725 texstorage_no_error(3, target, levels, internalformat, width, height, depth); in _mesa_TexStorage3D_no_error()
730 _mesa_TexStorage3D(GLenum target, GLsizei levels, GLenum internalformat, in _mesa_TexStorage3D() argument
733 texstorage_error(3, target, levels, internalformat, width, height, depth, in _mesa_TexStorage3D()
740 GLenum internalformat, GLsizei width) in _mesa_TextureStorage1D_no_error() argument
742 texturestorage_no_error(1, texture, levels, internalformat, width, 1, 1); in _mesa_TextureStorage1D_no_error()
747 _mesa_TextureStorage1D(GLuint texture, GLsizei levels, GLenum internalformat, in _mesa_TextureStorage1D() argument
750 texturestorage_error(1, texture, levels, internalformat, width, 1, 1, in _mesa_TextureStorage1D()
757 GLenum internalformat, in _mesa_TextureStorage2D_no_error() argument
760 texturestorage_no_error(2, texture, levels, internalformat, width, height, 1); in _mesa_TextureStorage2D_no_error()
766 GLenum internalformat, in _mesa_TextureStorage2D() argument
769 texturestorage_error(2, texture, levels, internalformat, width, height, 1, in _mesa_TextureStorage2D()
776 GLenum internalformat, GLsizei width, in _mesa_TextureStorage3D_no_error() argument
779 texturestorage_no_error(3, texture, levels, internalformat, width, height, in _mesa_TextureStorage3D_no_error()
785 _mesa_TextureStorage3D(GLuint texture, GLsizei levels, GLenum internalformat, in _mesa_TextureStorage3D() argument
788 texturestorage_error(3, texture, levels, internalformat, width, height, depth, in _mesa_TextureStorage3D()
795 GLenum internalformat, in _mesa_TextureStorage1DEXT() argument
805 texturestorage_error(1, texture, levels, internalformat, width, 1, 1, in _mesa_TextureStorage1DEXT()
812 GLenum internalformat, in _mesa_TextureStorage2DEXT() argument
822 texturestorage_error(2, texture, levels, internalformat, width, height, 1, in _mesa_TextureStorage2DEXT()
829 GLenum internalformat, in _mesa_TextureStorage3DEXT() argument
839 texturestorage_error(3, texture, levels, internalformat, width, height, depth, in _mesa_TextureStorage3DEXT()
849 GLenum internalformat, GLsizei width, in _mesa_texture_storage_memory() argument
855 texture_storage(ctx, dims, texObj, memObj, target, levels, internalformat, in _mesa_texture_storage_memory()