/external/deqp/modules/internal/ |
D | ditAstcTests.cpp | 90 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 = (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/intel/isl/ |
D | isl_format_layout.csv | 289 …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/mesa3d/src/mesa/main/ |
D | formats.csv | 324 MESA_FORMAT_RGBA_ASTC_4x4 , astc , 4, 4, 1, x128, , , , xyzw, rgb 325 MESA_FORMAT_RGBA_ASTC_5x4 , astc , 5, 4, 1, x128, , , , xyzw, rgb 326 MESA_FORMAT_RGBA_ASTC_5x5 , astc , 5, 5, 1, x128, , , , xyzw, rgb 327 MESA_FORMAT_RGBA_ASTC_6x5 , astc , 6, 5, 1, x128, , , , xyzw, rgb 328 MESA_FORMAT_RGBA_ASTC_6x6 , astc , 6, 6, 1, x128, , , , xyzw, rgb 329 MESA_FORMAT_RGBA_ASTC_8x5 , astc , 8, 5, 1, x128, , , , xyzw, rgb 330 MESA_FORMAT_RGBA_ASTC_8x6 , astc , 8, 6, 1, x128, , , , xyzw, rgb 331 MESA_FORMAT_RGBA_ASTC_8x8 , astc , 8, 8, 1, x128, , , , xyzw, rgb 332 MESA_FORMAT_RGBA_ASTC_10x5 , astc ,10, 5, 1, x128, , , , xyzw, rgb 333 MESA_FORMAT_RGBA_ASTC_10x6 , astc ,10, 6, 1, x128, , , , xyzw, rgb [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fASTCDecompressionCases.cpp | 71 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 …]
|
D | es3fCompressedTextureTests.cpp | 73 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()
|
D | es3fASTCDecompressionCases.hpp | 55 tcu::astc::BlockTestType testType, 67 const tcu::astc::BlockTestType m_testType;
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format.csv | 208 PIPE_FORMAT_ASTC_4x4 , astc, 4, 4, x128, , , , xyzw, rgb 209 PIPE_FORMAT_ASTC_5x4 , astc, 5, 4, x128, , , , xyzw, rgb 210 PIPE_FORMAT_ASTC_5x5 , astc, 5, 5, x128, , , , xyzw, rgb 211 PIPE_FORMAT_ASTC_6x5 , astc, 6, 5, x128, , , , xyzw, rgb 212 PIPE_FORMAT_ASTC_6x6 , astc, 6, 6, x128, , , , xyzw, rgb 213 PIPE_FORMAT_ASTC_8x5 , astc, 8, 5, x128, , , , xyzw, rgb 214 PIPE_FORMAT_ASTC_8x6 , astc, 8, 6, x128, , , , xyzw, rgb 215 PIPE_FORMAT_ASTC_8x8 , astc, 8, 8, x128, , , , xyzw, rgb 216 PIPE_FORMAT_ASTC_10x5 , astc,10, 5, x128, , , , xyzw, rgb 217 PIPE_FORMAT_ASTC_10x6 , astc,10, 6, x128, , , , xyzw, rgb [all …]
|
/external/deqp/android/cts/master/src/ |
D | gles3-hw-issues.txt | 66 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/ |
D | testing.md | 28 ( 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 106 "mandrill_132x132_12x12.astc-5-subsets", which is an "image" source, into an 130 The image from the task we just looked at, "8888 image mandrill_132x132_12x12.astc-5-subsets", 131 can be found at `dm_output/8888/image/mandrill_132x132_12x12.astc-5-subsets.png`.
|
/external/skqp/site/dev/testing/ |
D | testing.md | 28 ( 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 106 "mandrill_132x132_12x12.astc-5-subsets", which is an "image" source, into an 130 The image from the task we just looked at, "8888 image mandrill_132x132_12x12.astc-5-subsets", 131 can be found at `dm_output/8888/image/mandrill_132x132_12x12.astc-5-subsets.png`.
|
/external/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_texture_state.c | 90 const bool astc = !!(format & ASTC_FORMAT); in etna_create_sampler_view_state() local 111 sv->TE_SAMPLER_CONFIG0 = COND(!ext && !astc, VIVS_TE_SAMPLER_CONFIG0_FORMAT(format)); in etna_create_sampler_view_state() 135 … COND(astc, VIVS_TE_SAMPLER_CONFIG1_FORMAT_EXT(TEXTURE_FORMAT_EXT_ASTC)) | in etna_create_sampler_view_state() 137 sv->TE_SAMPLER_ASTC0 = COND(astc, VIVS_NTE_SAMPLER_ASTC0_ASTC_FORMAT(format)) | in etna_create_sampler_view_state() 146 COND(util_format_is_srgb(so->format) && !astc, VIVS_TE_SAMPLER_LOG_SIZE_SRGB) | in etna_create_sampler_view_state() 147 COND(astc, VIVS_TE_SAMPLER_LOG_SIZE_ASTC); in etna_create_sampler_view_state()
|
/external/deqp/framework/common/ |
D | tcuAstcUtil.hpp | 33 namespace astc namespace
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.3.x/src/ |
D | gles3-master.txt | 26595 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4 26596 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4 26597 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5 26598 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5 26599 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6 26600 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5 26601 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6 26602 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8 26603 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5 26604 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6 [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.3.x/ |
D | gles3-master.txt | 26635 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4 26636 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4 26637 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5 26638 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5 26639 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6 26640 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5 26641 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6 26642 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8 26643 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5 26644 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6 [all …]
|
/external/deqp/android/cts/lmp-mr1/src/ |
D | es30-lmp-mr1.txt | 22542 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/src/ |
D | es30-lmp.txt | 22469 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/ |
D | gles3-master.txt | 22542 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/ |
D | gles3-master.txt | 22469 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/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.4.x/src/ |
D | gles3-master.txt | 27961 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4 27962 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4 27963 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5 27964 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5 27965 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6 27966 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5 27967 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6 27968 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8 27969 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5 27970 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6 [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.5.x/ |
D | gles3-master.txt | 27319 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4 27320 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4 27321 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5 27322 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5 27323 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6 27324 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5 27325 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6 27326 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8 27327 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5 27328 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6 [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.4.x/ |
D | gles3-master.txt | 27233 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4 27234 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4 27235 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5 27236 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5 27237 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6 27238 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5 27239 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6 27240 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8 27241 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5 27242 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6 [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/master/ |
D | gles3-master.txt | 27323 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4 27324 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4 27325 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5 27326 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5 27327 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6 27328 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5 27329 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6 27330 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8 27331 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5 27332 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6 [all …]
|
/external/deqp/android/cts/master/ |
D | gles3-master.txt | 25997 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.4x4 25998 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x4 25999 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.5x5 26000 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x5 26001 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6 26002 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5 26003 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6 26004 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8 26005 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x5 26006 dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.10x6 [all …]
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.2.x/src/ |
D | gles3-master.txt | 24260 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/src/ |
D | gles3-master.txt | 24260 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 …]
|