Home
last modified time | relevance | path

Searched refs:internalformat (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/external/mesa3d/src/mesa/main/
Dformatquery.c41 _is_renderable(struct gl_context *ctx, GLenum internalformat) in _is_renderable() argument
51 if (internalformat != GL_RGB && internalformat != GL_RGBA && in _is_renderable()
52 _mesa_base_fbo_format(ctx, internalformat) == 0) in _is_renderable()
62 _legal_parameters(struct gl_context *ctx, GLenum target, GLenum internalformat, in _legal_parameters() argument
262 if (!query2 && !_is_renderable(ctx, internalformat)) { in _legal_parameters()
265 _mesa_enum_to_string(internalformat)); in _legal_parameters()
455 GLenum internalformat, GLenum pname) in _is_resource_supported() argument
495 if (_mesa_base_tex_format(ctx, internalformat) < 0) in _is_resource_supported()
499 if (!_mesa_legal_texture_base_format_for_target(ctx, target, internalformat)) in _is_resource_supported()
503 if (_mesa_is_compressed_format(ctx, internalformat) && in _is_resource_supported()
[all …]
Dtexstorage.c220 GLenum internalformat) in _mesa_is_legal_tex_storage_format() argument
223 switch (internalformat) { in _mesa_is_legal_tex_storage_format()
258 return _mesa_base_tex_format(ctx, internalformat) > 0; in _mesa_is_legal_tex_storage_format()
309 GLsizei levels, GLenum internalformat, in tex_storage_error_check() argument
327 if (_mesa_is_compressed_format(ctx, internalformat)) { in tex_storage_error_check()
329 if (!_mesa_target_can_be_compressed(ctx, target, internalformat, &err)) { in tex_storage_error_check()
332 _mesa_enum_to_string(internalformat)); in tex_storage_error_check()
377 if (!_mesa_legal_texture_base_format_for_target(ctx, target, internalformat)) { in tex_storage_error_check()
395 GLsizei levels, GLenum internalformat, GLsizei width, in texture_storage() argument
408 internalformat, width, height, depth, dsa)) { in texture_storage()
[all …]
Dtexstorage.h64 GLenum internalformat, GLsizei width);
67 _mesa_TexStorage1D(GLenum target, GLsizei levels, GLenum internalformat,
72 GLenum internalformat, GLsizei width,
76 _mesa_TexStorage2D(GLenum target, GLsizei levels, GLenum internalformat,
81 GLenum internalformat, GLsizei width,
85 _mesa_TexStorage3D(GLenum target, GLsizei levels, GLenum internalformat,
90 GLenum internalformat, GLsizei width);
93 _mesa_TextureStorage1D(GLuint texture, GLsizei levels, GLenum internalformat,
98 GLenum internalformat, GLsizei width,
102 _mesa_TextureStorage2D(GLuint texture, GLsizei levels, GLenum internalformat,
[all …]
Dgenmipmap.c79 GLenum internalformat) in _mesa_is_valid_generate_texture_mipmap_internalformat() argument
92 return internalformat == GL_RGBA || internalformat == GL_RGB || in _mesa_is_valid_generate_texture_mipmap_internalformat()
93 internalformat == GL_LUMINANCE_ALPHA || in _mesa_is_valid_generate_texture_mipmap_internalformat()
94 internalformat == GL_LUMINANCE || internalformat == GL_ALPHA || in _mesa_is_valid_generate_texture_mipmap_internalformat()
95 internalformat == GL_BGRA_EXT || in _mesa_is_valid_generate_texture_mipmap_internalformat()
96 (_mesa_is_es3_color_renderable(ctx, internalformat) && in _mesa_is_valid_generate_texture_mipmap_internalformat()
97 _mesa_is_es3_texture_filterable(ctx, internalformat)); in _mesa_is_valid_generate_texture_mipmap_internalformat()
100 return (!_mesa_is_enum_format_integer(internalformat) && in _mesa_is_valid_generate_texture_mipmap_internalformat()
101 !_mesa_is_depthstencil_format(internalformat) && in _mesa_is_valid_generate_texture_mipmap_internalformat()
102 !_mesa_is_astc_format(internalformat) && in _mesa_is_valid_generate_texture_mipmap_internalformat()
[all …]
Dteximage.h228 GLenum internalformat);
260 _mesa_TexImage1D( GLenum target, GLint level, GLint internalformat,
266 GLint internalformat, GLsizei width, GLint border,
271 GLint internalformat, GLsizei width, GLint border,
275 _mesa_TexImage2D( GLenum target, GLint level, GLint internalformat,
281 GLint internalformat, GLsizei width, GLsizei height,
292 _mesa_TexImage3D( GLenum target, GLint level, GLint internalformat,
298 GLint internalformat, GLsizei width, GLsizei height,
303 _mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalformat,
315 _mesa_TexImage1D_no_error(GLenum target, GLint level, GLint internalformat,
[all …]
Dtextureview.c253 _mesa_texture_view_lookup_view_class(const struct gl_context *ctx, GLenum internalformat) in _mesa_texture_view_lookup_view_class() argument
258 if (compatible_internal_formats[i].internal_format == internalformat) in _mesa_texture_view_lookup_view_class()
266 == internalformat) in _mesa_texture_view_lookup_view_class()
274 == internalformat) in _mesa_texture_view_lookup_view_class()
281 == internalformat) in _mesa_texture_view_lookup_view_class()
289 == internalformat) in _mesa_texture_view_lookup_view_class()
527 GLenum internalformat, GLuint minlevel, GLuint numlevels, in texture_view() argument
538 internalformat, GL_NONE, GL_NONE); in texture_view()
682 internalformat, texFormat, in texture_view()
706 GLenum internalformat, in _mesa_TextureView_no_error() argument
[all …]
/external/swiftshader/src/OpenGL/libGLESv2/
Dutilities.h48 bool IsSizedInternalFormat(GLint internalformat); // Not compressed.
61 GLenum ValidateTextureFormatType(GLenum format, GLenum type, GLint internalformat, GLenum target);
65 bool IsColorRenderable(GLint internalformat);
66 bool IsDepthRenderable(GLint internalformat);
67 bool IsStencilRenderable(GLint internalformat);
68 bool IsMipmappable(GLint internalformat);
70 GLuint GetAlphaSize(GLint internalformat);
71 GLuint GetRedSize(GLint internalformat);
72 GLuint GetGreenSize(GLint internalformat);
73 GLuint GetBlueSize(GLint internalformat);
[all …]
Dutilities.cpp326 bool IsCompressed(GLint internalformat) in IsCompressed() argument
328 switch(internalformat) in IsCompressed()
351 bool IsSizedInternalFormat(GLint internalformat) in IsSizedInternalFormat() argument
353 switch(internalformat) in IsSizedInternalFormat()
609 GLint internalformat = depthbuffer->getFormat(); in ValidateReadPixelsFormatType() local
615 switch(internalformat) in ValidateReadPixelsFormatType()
626 UNREACHABLE(internalformat); in ValidateReadPixelsFormatType()
631 switch(internalformat) in ValidateReadPixelsFormatType()
642 UNREACHABLE(internalformat); in ValidateReadPixelsFormatType()
681 GLint internalformat = colorbuffer->getFormat(); in ValidateReadPixelsFormatType() local
[all …]
/external/swiftshader/src/OpenGL/common/
DImage.hpp58 bool IsUnsizedInternalFormat(GLint internalformat);
59 GLenum GetBaseInternalFormat(GLint internalformat);
100 Image(Texture *parentTexture, GLsizei width, GLsizei height, GLint internalformat) in Image() argument
101 …ture->getResource(), width, height, 1, 0, 1, gl::SelectInternalFormat(internalformat), true, true), in Image()
102 …width(width), height(height), depth(1), internalformat(internalformat), parentTexture(parentTextur… in Image()
110 …ure *parentTexture, GLsizei width, GLsizei height, GLsizei depth, int border, GLint internalformat) in Image() argument
111 …Resource(), width, height, depth, border, 1, gl::SelectInternalFormat(internalformat), true, true), in Image()
112 …width(width), height(height), depth(depth), internalformat(internalformat), parentTexture(parentTe… in Image()
120 Image(GLsizei width, GLsizei height, GLint internalformat, int pitchP) in Image() argument
121 …: sw::Surface(nullptr, width, height, 1, 0, 1, gl::SelectInternalFormat(internalformat), true, tru… in Image()
[all …]
DImage.cpp34 bool IsUnsizedInternalFormat(GLint internalformat) in IsUnsizedInternalFormat() argument
36 switch(internalformat) in IsUnsizedInternalFormat()
61 GLenum GetBaseInternalFormat(GLint internalformat) in GetBaseInternalFormat() argument
63 switch(internalformat) in GetBaseInternalFormat()
137 UNREACHABLE(internalformat); in GetBaseInternalFormat()
144 GLint GetSizedInternalFormat(GLint internalformat, GLenum type) in GetSizedInternalFormat() argument
146 if(!IsUnsizedInternalFormat(internalformat)) in GetSizedInternalFormat()
148 return internalformat; in GetSizedInternalFormat()
151 switch(internalformat) in GetSizedInternalFormat()
303 UNREACHABLE(internalformat); in GetSizedInternalFormat()
[all …]
/external/swiftshader/src/OpenGL/libGLES_CM/
Dutilities.cpp35 bool IsSizedInternalFormat(GLint internalformat) in IsSizedInternalFormat() argument
37 switch(internalformat) in IsSizedInternalFormat()
137 GLenum ValidateTextureFormatType(GLenum format, GLenum type, GLint internalformat, GLenum target) in ValidateTextureFormatType() argument
173 if((GLenum)internalformat != format) in ValidateTextureFormatType()
175 if(gl::IsUnsizedInternalFormat(internalformat)) in ValidateTextureFormatType()
180 if(!IsSizedInternalFormat(internalformat)) in ValidateTextureFormatType()
186 if((GLenum)internalformat == format) in ValidateTextureFormatType()
248 …alformats[] = {__VA_ARGS__}; for(GLint v : validInternalformats) {if(internalformat == v) validSiz… in ValidateTextureFormatType()
322 bool IsColorRenderable(GLint internalformat) in IsColorRenderable() argument
324 switch(internalformat) in IsColorRenderable()
[all …]
Dutilities.h41 GLenum ValidateTextureFormatType(GLenum format, GLenum type, GLint internalformat, GLenum target);
43 bool IsColorRenderable(GLint internalformat);
44 bool IsDepthRenderable(GLint internalformat);
45 bool IsStencilRenderable(GLint internalformat);
47 GLuint GetAlphaSize(GLint internalformat);
48 GLuint GetRedSize(GLint internalformat);
49 GLuint GetGreenSize(GLint internalformat);
50 GLuint GetBlueSize(GLint internalformat);
51 GLuint GetDepthSize(GLint internalformat);
52 GLuint GetStencilSize(GLint internalformat);
DRenderbuffer.cpp296 Colorbuffer::Colorbuffer(int width, int height, GLenum internalformat, GLsizei samples) : mRenderTa… in Colorbuffer() argument
308 mRenderTarget = egl::Image::create(width, height, internalformat, supportedSamples, false); in Colorbuffer()
319 format = internalformat; in Colorbuffer()
374 DepthStencilbuffer::DepthStencilbuffer(int width, int height, GLenum internalformat, GLsizei sample… in DepthStencilbuffer() argument
386 mDepthStencil = egl::Image::create(width, height, internalformat, supportedSamples, false); in DepthStencilbuffer()
397 format = internalformat; in DepthStencilbuffer()
443 …ffer(int width, int height, GLenum internalformat, GLsizei samples) : DepthStencilbuffer(width, he… in Depthbuffer() argument
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.5.x/
Dgles2-khr-master.txt412 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_byte_rgba
413 KHR-GLES2.core.internalformat.texture2d.rgb_unsigned_byte_rgb
414 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_short_4_4_4_4_rgba
415 KHR-GLES2.core.internalformat.texture2d.luminance_alpha_unsigned_byte_luminance_alpha
416 KHR-GLES2.core.internalformat.texture2d.luminance_unsigned_byte_luminance
417 KHR-GLES2.core.internalformat.texture2d.alpha_unsigned_byte_alpha
418 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgba
419 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb10_a2
420 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb5_a1
421 KHR-GLES2.core.internalformat.texture2d.rgb_unsigned_int_2_10_10_10_rev_rgb
[all …]
Dgles32-khr-master.txt1030 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_byte_rgba
1031 KHR-GLES32.core.internalformat.texture2d.rgb_unsigned_byte_rgb
1032 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_short_4_4_4_4_rgba
1033 KHR-GLES32.core.internalformat.texture2d.luminance_alpha_unsigned_byte_luminance_alpha
1034 KHR-GLES32.core.internalformat.texture2d.luminance_unsigned_byte_luminance
1035 KHR-GLES32.core.internalformat.texture2d.alpha_unsigned_byte_alpha
1036 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgba
1037 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb10_a2
1038 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb5_a1
1039 KHR-GLES32.core.internalformat.texture2d.rgb_unsigned_int_2_10_10_10_rev_rgb
[all …]
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/3.2.6.x/
Dgles2-khr-master.txt412 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_byte_rgba
413 KHR-GLES2.core.internalformat.texture2d.rgb_unsigned_byte_rgb
414 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_short_4_4_4_4_rgba
415 KHR-GLES2.core.internalformat.texture2d.luminance_alpha_unsigned_byte_luminance_alpha
416 KHR-GLES2.core.internalformat.texture2d.luminance_unsigned_byte_luminance
417 KHR-GLES2.core.internalformat.texture2d.alpha_unsigned_byte_alpha
418 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgba
419 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb10_a2
420 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb5_a1
421 KHR-GLES2.core.internalformat.texture2d.rgb_unsigned_int_2_10_10_10_rev_rgb
[all …]
Dgles32-khr-master.txt1030 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_byte_rgba
1031 KHR-GLES32.core.internalformat.texture2d.rgb_unsigned_byte_rgb
1032 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_short_4_4_4_4_rgba
1033 KHR-GLES32.core.internalformat.texture2d.luminance_alpha_unsigned_byte_luminance_alpha
1034 KHR-GLES32.core.internalformat.texture2d.luminance_unsigned_byte_luminance
1035 KHR-GLES32.core.internalformat.texture2d.alpha_unsigned_byte_alpha
1036 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgba
1037 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb10_a2
1038 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb5_a1
1039 KHR-GLES32.core.internalformat.texture2d.rgb_unsigned_int_2_10_10_10_rev_rgb
[all …]
/external/deqp/external/openglcts/data/mustpass/gles/khronos_mustpass/master/
Dgles2-khr-master.txt412 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_byte_rgba
413 KHR-GLES2.core.internalformat.texture2d.rgb_unsigned_byte_rgb
414 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_short_4_4_4_4_rgba
415 KHR-GLES2.core.internalformat.texture2d.luminance_alpha_unsigned_byte_luminance_alpha
416 KHR-GLES2.core.internalformat.texture2d.luminance_unsigned_byte_luminance
417 KHR-GLES2.core.internalformat.texture2d.alpha_unsigned_byte_alpha
418 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgba
419 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb10_a2
420 KHR-GLES2.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb5_a1
421 KHR-GLES2.core.internalformat.texture2d.rgb_unsigned_int_2_10_10_10_rev_rgb
[all …]
Dgles32-khr-master.txt1030 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_byte_rgba
1031 KHR-GLES32.core.internalformat.texture2d.rgb_unsigned_byte_rgb
1032 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_short_4_4_4_4_rgba
1033 KHR-GLES32.core.internalformat.texture2d.luminance_alpha_unsigned_byte_luminance_alpha
1034 KHR-GLES32.core.internalformat.texture2d.luminance_unsigned_byte_luminance
1035 KHR-GLES32.core.internalformat.texture2d.alpha_unsigned_byte_alpha
1036 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgba
1037 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb10_a2
1038 KHR-GLES32.core.internalformat.texture2d.rgba_unsigned_int_2_10_10_10_rev_rgb5_a1
1039 KHR-GLES32.core.internalformat.texture2d.rgb_unsigned_int_2_10_10_10_rev_rgb
[all …]
/external/deqp/external/openglcts/modules/gles31/
Des31cShaderImageLoadStoreTests.cpp177 bool Equal(const vec4& v0, const vec4& v1, GLenum internalformat) in Equal() argument
179 if (internalformat == GL_RGBA8_SNORM || internalformat == GL_RGBA8) in Equal()
206 …bool CompareValues(T* map_data, int kSize, const T& expected_value, GLenum internalformat = 0, int… in CompareValues() argument
210 if (!Equal(map_data[i], expected_value, internalformat)) in CompareValues()
221 …pareValues(bool always, T* map_data, int kSize, const T& expected_value, GLenum internalformat = 0, in CompareValues() argument
224 (void)internalformat; in CompareValues()
781 ShortByteData(int size, const T& value, GLenum internalformat, GLenum format) in ShortByteData() argument
792 if (Shorts(internalformat)) in ShortByteData()
802 if (Bytes(internalformat)) in ShortByteData()
806 if (internalformat == GL_RGBA8I || internalformat == GL_RGBA8UI) in ShortByteData()
[all …]
Des31cTextureStorageMultisampleTexStorage2DMultisampleTests.cpp148 glw::GLenum internalformat = internalformat_list[internalformat_index]; in iterate() local
156 gl.getInternalformativ(target, internalformat, GL_SAMPLES, 1, &internalformat_max_samples); in iterate()
161 gl.texStorage2DMultisample(target, internalformat_max_samples, internalformat, width, height, in iterate()
178 gl.texStorage2DMultisample(target, internalformat_max_samples + 1, internalformat, width, height, in iterate()
623 const glw::GLenum internalformat = GL_RGBA8; in iterate() local
630 …gl.texStorage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, samples, internalformat, width, height, fixe… in iterate()
636 …gl.texStorage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, samples, internalformat, width, height, fixe… in iterate()
646 …gl.texStorage3DMultisample(GL_TEXTURE_2D_MULTISAMPLE_ARRAY_OES, samples, internalformat, width, he… in iterate()
654 …gl.texStorage3DMultisample(GL_TEXTURE_2D_MULTISAMPLE_ARRAY_OES, samples, internalformat, width, he… in iterate()
799 glw::GLenum internalformat = internalformat_list[internalformat_index]; in iterate() local
[all …]
/external/deqp/external/openglcts/modules/gl/
Dgl4cES31CompatibilityShaderImageLoadStoreTests.cpp183 bool Equal(const vec4& v0, const vec4& v1, GLenum internalformat) in Equal() argument
185 if (internalformat == GL_RGBA8_SNORM || internalformat == GL_RGBA8) in Equal()
212 …bool CompareValues(T* map_data, int kSize, const T& expected_value, GLenum internalformat = 0, int… in CompareValues() argument
216 if (!Equal(map_data[i], expected_value, internalformat)) in CompareValues()
227 …pareValues(bool always, T* map_data, int kSize, const T& expected_value, GLenum internalformat = 0, in CompareValues() argument
230 (void)internalformat; in CompareValues()
810 ShortByteData(int size, const T& value, GLenum internalformat, GLenum format) in ShortByteData() argument
821 if (Shorts(internalformat)) in ShortByteData()
831 if (Bytes(internalformat)) in ShortByteData()
835 if (internalformat == GL_RGBA8I || internalformat == GL_RGBA8UI) in ShortByteData()
[all …]
Dgl4cShaderImageLoadStoreTests.cpp251 bool Equal(const vec4& v0, const vec4& v1, GLenum internalformat) in Equal() argument
253 …if (internalformat == GL_RGBA16_SNORM || internalformat == GL_RG16_SNORM || internalformat == GL_R… in Equal()
257 …else if (internalformat == GL_RGBA8_SNORM || internalformat == GL_RG8_SNORM || internalformat == G… in Equal()
1408 bool Write(GLenum internalformat, const T& write_value, const T& expected_value) in Write() argument
1412 …const GLuint program = BuildProgram(src_vs, NULL, NULL, NULL, GenFS(internalformat, write_value)… in Write()
1423 … glTexImage2D(GL_TEXTURE_2D, 0, internalformat, kSize, kSize, 0, Format<T>(), Type<T>(), &data[0]); in Write()
1428 glBindImageTexture(unit, texture, 0, GL_FALSE, 0, GL_WRITE_ONLY, internalformat); in Write()
1438 if (!Equal(data[i], expected_value, internalformat)) in Write()
1445 << ". Format is: " << FormatEnumToString(internalformat) in Write()
1473 std::string GenFS(GLenum internalformat, const T& value) in GenFS() argument
[all …]
/external/angle/src/libANGLE/renderer/d3d/
DRenderbufferD3D.cpp36 GLenum internalformat, in setStorage() argument
40 return setStorageMultisample(context, 0, internalformat, width, height, in setStorage()
46 GLenum internalformat, in setStorageMultisample() argument
60 GLenum creationFormat = internalformat; in setStorageMultisample()
61 if (internalformat == GL_DEPTH_COMPONENT16 || internalformat == GL_STENCIL_INDEX8) in setStorageMultisample()
/external/deqp/external/openglcts/modules/common/
DglcTextureRepeatModeTests.cpp81 GLenum internalformat; member
506 const FormatInfo* findFormat(GLenum internalformat) const;
507 const InternalFormat& findInternalFormat(GLenum internalformat) const;
508 …void clearTextures(GLenum target, GLsizei width, GLsizei height, GLint lod, GLenum internalformat,…
511 GLenum internalformat) const;
516 …mpMode(GLubyte* buf, GLsizei width, GLsizei height, GLenum clampMode, GLenum internalformat) const;
518 GLenum internalformat) const;
519 bool verifyRepeat(GLubyte* buf, GLsizei width, GLsizei height, GLenum internalformat) const;
520 …bool verifyMirroredRepeat(GLubyte* buf, GLsizei width, GLsizei height, GLenum internalformat) cons…
548 const InternalFormat& TestClampModeForInternalFormat::findInternalFormat(GLenum internalformat) con… in findInternalFormat()
[all …]

12345678910>>...12