Home
last modified time | relevance | path

Searched refs:intFormat (Results 1 – 13 of 13) sorted by relevance

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
DvktImageAtomicOperationTests.cpp136 static string getComponentTypeStr (deUint32 componentWidth, bool intFormat, bool uintFormat, bool f… in getComponentTypeStr() argument
138 DE_ASSERT(intFormat || uintFormat || floatFormat); in getComponentTypeStr()
142 if (intFormat) in getComponentTypeStr()
152 static string getVec4TypeStr (deUint32 componentWidth, bool intFormat, bool uintFormat, bool floatF… in getVec4TypeStr() argument
154 DE_ASSERT(intFormat || uintFormat || floatFormat); in getVec4TypeStr()
158 if (intFormat) in getVec4TypeStr()
698 const bool intFormat = isIntFormat(imageFormat); in initPrograms() local
701 const string type = getComponentTypeStr(componentWidth, intFormat, uintFormat, floatFormat); in initPrograms()
702 const string vec4Type = getVec4TypeStr(componentWidth, intFormat, uintFormat, floatFormat); in initPrograms()
826 const bool intFormat = isIntFormat(imageFormat); in initPrograms() local
[all …]
DvktImageQualifiersTests.cpp126 …const bool intFormat = isIntFormat(mapTextureFormat(format)) || isUintFormat(mapTextureFormat(… in comparePixelBuffers() local
154 if (intFormat) in comparePixelBuffers()
261 const bool intFormat = isIntFormat(mapTextureFormat(m_format)); in initPrograms() local
262 const std::string colorVecTypeName = std::string(uintFormat ? "u" : intFormat ? "i" : "") + "vec4"; in initPrograms()
263 …const std::string colorScalarTypeName = std::string(uintFormat ? "uint" : intFormat ? "int" : "flo… in initPrograms()
DvktImageLoadStoreTests.cpp275 const bool intFormat = isIntegerFormat(imageFormat); in generateReferenceImage() local
289 if (intFormat) in generateReferenceImage()
/third_party/mesa3d/src/mesa/drivers/x11/
Dxm_api.c1726 GLenum format, type, intFormat; in XMesaBindTexImage() local
1730 intFormat = GL_RGBA; in XMesaBindTexImage()
1735 intFormat = GL_RGB; in XMesaBindTexImage()
1740 intFormat = GL_RGB; in XMesaBindTexImage()
1747 intFormat = GL_RGBA; in XMesaBindTexImage()
1750 intFormat = GL_RGB; in XMesaBindTexImage()
1753 _mesa_TexImage2D(GL_TEXTURE_2D, 0, intFormat, rb->Width, rb->Height, 0, in XMesaBindTexImage()
/third_party/mesa3d/src/mesa/drivers/common/
Dmeta.h498 GLsizei width, GLsizei height, GLenum intFormat);
546 GLenum intFormat,
Dmeta.c1333 GLsizei width, GLsizei height, GLenum intFormat) in _mesa_meta_alloc_texture() argument
1342 intFormat != tex->IntFormat) { in _mesa_meta_alloc_texture()
1362 tex->IntFormat = intFormat; in _mesa_meta_alloc_texture()
1389 GLenum intFormat, in _mesa_meta_setup_copypix_texture() argument
1401 newTex = _mesa_meta_alloc_texture(tex, width, height, intFormat); in _mesa_meta_setup_copypix_texture()
1415 intFormat, GL_UNSIGNED_BYTE, NULL); in _mesa_meta_setup_copypix_texture()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fOpaqueTypeIndexingTests.cpp281 const deUint32 intFormat = glu::getInternalFormat(texFormat); in setupTexture() local
291 gl.texStorage1D(texTarget, 1, intFormat, 1); in setupTexture()
296 gl.texStorage2D(texTarget, 1, intFormat, 1, 1); in setupTexture()
302 gl.texStorage3D(texTarget, 1, intFormat, 1, 1, 1); in setupTexture()
307 gl.texStorage3D(texTarget, 1, intFormat, 1, 1, 6); in setupTexture()
314 gl.texStorage2D(texTarget, 1, intFormat, 1, 1); in setupTexture()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fTextureSwizzleTests.cpp334 deUint32 intFormat = formats[fmtNdx].internalFormat; in init() local
338 … Texture2DSwizzleCase(m_context, name.c_str(), "Multi-channel swizzle", intFormat, format, dataTyp… in init()
/third_party/mesa3d/src/mesa/main/
Dmipmap.c1844 GLsizei border, GLenum intFormat, mesa_format format) in prepare_mipmap_level() argument
1880 dstImage->InternalFormat != intFormat || in prepare_mipmap_level()
1887 border, intFormat, format); in prepare_mipmap_level()
1924 const GLenum intFormat = baseImage->InternalFormat; in _mesa_prepare_mipmap_levels() local
1939 border, intFormat, texFormat)) { in _mesa_prepare_mipmap_levels()
Dfbobject.c1094 GLenum intFormat = GL_NONE; /* color buffers' internal format */ in _mesa_test_framebuffer_completeness() local
1302 intFormat = f; in _mesa_test_framebuffer_completeness()
1315 if (ctx->API != API_OPENGLES2 && intFormat != GL_NONE && f != intFormat) { in _mesa_test_framebuffer_completeness()
Dteximage.c1387 GLenum intFormat, GLenum *error) in _mesa_target_can_be_compressed() argument
1390 mesa_format format = _mesa_glenum_to_compressed_format(intFormat); in _mesa_target_can_be_compressed()
5284 GLint dims, GLenum intFormat, bool dsa, in compressed_subtexture_target_check() argument
5371 format = _mesa_glenum_to_compressed_format(intFormat); in compressed_subtexture_target_check()
5387 _mesa_enum_to_string(intFormat)); in compressed_subtexture_target_check()
Dteximage.h193 GLenum intFormat, GLenum *error);
/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_drawpixels.c640 GLenum intFormat = internal_format(ctx, format, type); in make_texture() local
642 pipeFormat = st_choose_format(st, intFormat, format, type, in make_texture()