Home
last modified time | relevance | path

Searched refs:astc (Results 1 – 22 of 22) sorted by relevance

/external/deqp/modules/internal/
DditAstcTests.cpp90 if (!astc::isValidBlock(data + blockNdx*astc::BLOCK_SIZE_BYTES, format, mode)) in verifyBlocksValid()
97 TCU_CHECK(numBytes % astc::BLOCK_SIZE_BYTES == 0); in getNumBlocksFromBytes()
98 return (numBytes / astc::BLOCK_SIZE_BYTES); in getNumBlocksFromBytes()
106 for (int blockTestTypeNdx = 0; blockTestTypeNdx < astc::BLOCK_TEST_TYPE_LAST; blockTestTypeNdx++) in iterate()
108 const astc::BlockTestType blockTestType = (const astc::BlockTestType)blockTestTypeNdx; in iterate()
110 if (astc::isBlockTestTypeHDROnly(blockTestType) && isAstcSRGBFormat(m_format)) in iterate()
114 astc::generateBlockCaseTestData(generatedData, m_format, blockTestType); in iterate()
119 if (blockTestType != astc::BLOCK_TEST_TYPE_RANDOM) in iterate()
122 if (!astc::isBlockTestTypeHDROnly(blockTestType) && in iterate()
123 (blockTestType != astc::BLOCK_TEST_TYPE_CEMS)) in iterate()
[all …]
/external/mesa3d/src/mesa/main/
Dformats.csv323 MESA_FORMAT_RGBA_ASTC_4x4 , astc , 4, 4, 1, x128, , , , xyzw, rgb
324 MESA_FORMAT_RGBA_ASTC_5x4 , astc , 5, 4, 1, x128, , , , xyzw, rgb
325 MESA_FORMAT_RGBA_ASTC_5x5 , astc , 5, 5, 1, x128, , , , xyzw, rgb
326 MESA_FORMAT_RGBA_ASTC_6x5 , astc , 6, 5, 1, x128, , , , xyzw, rgb
327 MESA_FORMAT_RGBA_ASTC_6x6 , astc , 6, 6, 1, x128, , , , xyzw, rgb
328 MESA_FORMAT_RGBA_ASTC_8x5 , astc , 8, 5, 1, x128, , , , xyzw, rgb
329 MESA_FORMAT_RGBA_ASTC_8x6 , astc , 8, 6, 1, x128, , , , xyzw, rgb
330 MESA_FORMAT_RGBA_ASTC_8x8 , astc , 8, 8, 1, x128, , , , xyzw, rgb
331 MESA_FORMAT_RGBA_ASTC_10x5 , astc ,10, 5, 1, x128, , , , xyzw, rgb
332 MESA_FORMAT_RGBA_ASTC_10x6 , astc ,10, 6, 1, x128, , , , xyzw, rgb
[all …]
/external/mesa3d/src/intel/isl/
Disl_format_layout.csv289 …TC_LDR_2D_4X4_U8SRGB , 128, 4, 4, 1, un8, un8, un8, un8, , , , srgb, astc
290 …TC_LDR_2D_5X4_U8SRGB , 128, 5, 4, 1, un8, un8, un8, un8, , , , srgb, astc
291 …TC_LDR_2D_5X5_U8SRGB , 128, 5, 5, 1, un8, un8, un8, un8, , , , srgb, astc
292 …TC_LDR_2D_6X5_U8SRGB , 128, 6, 5, 1, un8, un8, un8, un8, , , , srgb, astc
293 …TC_LDR_2D_6X6_U8SRGB , 128, 6, 6, 1, un8, un8, un8, un8, , , , srgb, astc
294 …TC_LDR_2D_8X5_U8SRGB , 128, 8, 5, 1, un8, un8, un8, un8, , , , srgb, astc
295 …TC_LDR_2D_8X6_U8SRGB , 128, 8, 6, 1, un8, un8, un8, un8, , , , srgb, astc
296 …TC_LDR_2D_8X8_U8SRGB , 128, 8, 8, 1, un8, un8, un8, un8, , , , srgb, astc
297 …TC_LDR_2D_10X5_U8SRGB , 128, 10, 5, 1, un8, un8, un8, un8, , , , srgb, astc
298 …TC_LDR_2D_10X6_U8SRGB , 128, 10, 6, 1, un8, un8, un8, un8, , , , srgb, astc
[all …]
/external/deqp/modules/gles3/functional/
Des3fASTCDecompressionCases.cpp71 using tcu::astc::BlockTestType;
99 for (int i = tcu::astc::BLOCK_SIZE_BYTES-1; i >= 0; i--) in astcBlockDataStr()
114 for (int i = tcu::astc::BLOCK_SIZE_BYTES-1; i >= 0; i--) in astcBlockDataStr()
381 …DE_ASSERT(!(tcu::isAstcSRGBFormat(m_format) && tcu::astc::isBlockTestTypeHDROnly(m_testType))); //… in ASTCBlockCase2D()
391 …m_renderer->initialize(64, 64, tcu::astc::getBlockTestTypeColorScale(m_testType), tcu::astc::getBl… in init()
395 DE_ASSERT(m_blockData.size() % tcu::astc::BLOCK_SIZE_BYTES == 0); in init()
397 …m_testCtx.getLog() << TestLog::Message << "Total " << m_blockData.size() / tcu::astc::BLOCK_SIZE_B… in init()
411 …if (m_renderer->getASTCSupport() == ASTCSUPPORTLEVEL_LDR && tcu::astc::isBlockTestTypeHDROnly(m_te… in iterate()
419 const int totalNumBlocks = (int)m_blockData.size() / tcu::astc::BLOCK_SIZE_BYTES; in iterate()
441 DE_ASSERT(compressed.getDataSize() == numBlocksPerImage*tcu::astc::BLOCK_SIZE_BYTES); in iterate()
[all …]
Des3fCompressedTextureTests.cpp73 for (int astcTestTypeI = 0; astcTestTypeI < tcu::astc::BLOCK_TEST_TYPE_LAST; astcTestTypeI++) in init()
75 const tcu::astc::BlockTestType astcTestType = (tcu::astc::BlockTestType)astcTestTypeI; in init()
85 if (tcu::isAstcSRGBFormat(format) && tcu::astc::isBlockTestTypeHDROnly(astcTestType)) in init()
Des3fASTCDecompressionCases.hpp55 tcu::astc::BlockTestType testType,
67 const tcu::astc::BlockTestType m_testType;
/external/mesa3d/src/gallium/auxiliary/util/
Du_format.csv205 PIPE_FORMAT_ASTC_4x4 , astc, 4, 4, x128, , , , xyzw, rgb
206 PIPE_FORMAT_ASTC_5x4 , astc, 5, 4, x128, , , , xyzw, rgb
207 PIPE_FORMAT_ASTC_5x5 , astc, 5, 5, x128, , , , xyzw, rgb
208 PIPE_FORMAT_ASTC_6x5 , astc, 6, 5, x128, , , , xyzw, rgb
209 PIPE_FORMAT_ASTC_6x6 , astc, 6, 6, x128, , , , xyzw, rgb
210 PIPE_FORMAT_ASTC_8x5 , astc, 8, 5, x128, , , , xyzw, rgb
211 PIPE_FORMAT_ASTC_8x6 , astc, 8, 6, x128, , , , xyzw, rgb
212 PIPE_FORMAT_ASTC_8x8 , astc, 8, 8, x128, , , , xyzw, rgb
213 PIPE_FORMAT_ASTC_10x5 , astc,10, 5, x128, , , , xyzw, rgb
214 PIPE_FORMAT_ASTC_10x6 , astc,10, 6, x128, , , , xyzw, rgb
[all …]
/external/deqp/android/cts/master/src/
Dgles3-hw-issues.txt66 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x10
67 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x10_srgb
68 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x5
69 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x5_srgb
70 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x6
71 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x6_srgb
72 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x8
73 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.10x8_srgb
74 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.12x10
75 dEQP-GLES3.functional.texture.compressed.astc.color_endpoint_modes.12x10_srgb
[all …]
/external/skia/site/dev/testing/
Dtesting.md28 ( 25MB 1857) 1.36ms 8888 image mandrill_132x132_12x12.astc-5-subsets
29 ( 25MB 1856) 1.41ms 8888 image mandrill_132x132_6x6.astc-5-subsets
30 ( 25MB 1855) 1.35ms 8888 image mandrill_132x130_6x5.astc-5-subsets
31 ( 25MB 1854) 1.41ms 8888 image mandrill_132x130_12x10.astc-5-subsets
32 ( 25MB 1853) 151µs 8888 image mandrill_130x132_10x6.astc-5-subsets
33 ( 25MB 1852) 154µs 8888 image mandrill_130x130_5x5.astc-5-subsets
84 ( 25MB 1857) 1.36ms 8888 image mandrill_132x132_12x12.astc-5-subsets
105 "mandrill_132x132_12x12.astc-5-subsets", which is an "image" source, into an
129 The image from the task we just looked at, "8888 image mandrill_132x132_12x12.astc-5-subsets",
130 can be found at dm_output/8888/image/mandrill_132x132_12x12.astc-5-subsets.png.
/external/deqp/framework/common/
DtcuAstcUtil.hpp33 namespace astc namespace
DtcuCompressedTexture.cpp40 return astc::BLOCK_SIZE_BYTES; in getBlockSize()
1032 astc::decompress(dst, src, format, params.astcMode); in decompressBlock()
DtcuAstcUtil.cpp33 namespace astc namespace
3016 case tcu::astc::BLOCK_TEST_TYPE_VOID_EXTENT_HDR: return Vec4(0.5f/65504.0f); in getBlockTestTypeColorScale()
3017 …case tcu::astc::BLOCK_TEST_TYPE_ENDPOINT_VALUE_HDR_NO_15: return Vec4(1.0f/65504.0f, 1.0f/65504.0f… in getBlockTestTypeColorScale()
3018 case tcu::astc::BLOCK_TEST_TYPE_ENDPOINT_VALUE_HDR_15: return Vec4(1.0f/65504.0f); in getBlockTestTypeColorScale()
3027 case tcu::astc::BLOCK_TEST_TYPE_VOID_EXTENT_HDR: return Vec4(0.5f); in getBlockTestTypeColorBias()
/external/deqp/android/cts/lmp/src/
Des30-lmp.txt22469 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4
22470 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4
22471 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5
22472 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5
22473 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6
22474 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5
22475 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6
22476 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8
22477 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5
22478 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6
[all …]
/external/deqp/android/cts/lmp/
Dgles3-master.txt22469 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4
22470 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4
22471 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5
22472 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5
22473 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6
22474 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5
22475 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6
22476 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8
22477 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5
22478 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6
[all …]
/external/deqp/android/cts/lmp-mr1/src/
Des30-lmp-mr1.txt22542 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4
22543 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4
22544 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5
22545 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5
22546 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6
22547 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5
22548 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6
22549 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8
22550 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5
22551 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6
[all …]
/external/deqp/android/cts/lmp-mr1/
Dgles3-master.txt22542 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4
22543 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4
22544 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5
22545 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5
22546 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6
22547 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5
22548 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6
22549 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8
22550 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5
22551 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6
[all …]
/external/deqp/android/cts/nyc/
Dgles3-master.txt24381 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4
24382 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4
24383 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5
24384 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5
24385 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6
24386 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5
24387 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6
24388 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8
24389 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5
24390 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6
[all …]
/external/deqp/android/cts/mnc/src/
Dgles3-master.txt24260 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4
24261 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4
24262 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5
24263 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5
24264 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6
24265 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5
24266 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6
24267 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8
24268 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5
24269 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6
[all …]
/external/deqp/android/cts/mnc/
Dgles3-master.txt24260 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4
24261 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4
24262 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5
24263 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5
24264 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6
24265 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5
24266 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6
24267 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8
24268 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5
24269 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6
[all …]
/external/deqp/android/cts/nyc/src/
Dgles3-master.txt24381 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4
24382 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4
24383 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5
24384 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5
24385 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6
24386 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5
24387 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6
24388 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8
24389 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5
24390 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6
[all …]
/external/deqp/android/cts/master/
Dgles3-master.txt25117 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4
25118 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4
25119 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5
25120 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5
25121 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6
25122 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5
25123 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6
25124 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8
25125 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5
25126 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6
[all …]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineImageUtil.cpp844 …tcu::astc::generateRandomValidBlocks(compressedData, compressedLevel->getDataSize()/tcu::astc::BLO… in populateCompressedLevels()