Home
last modified time | relevance | path

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

/cts/tests/tests/opengl/src/android/opengl/cts/
DCompressedTextureLoader.java428 static HashMap<String, Boolean> sFormatMap; field in CompressedTextureLoader
436 sFormatMap = new HashMap<String, Boolean>(); in updateSupportedFormats()
444 sFormatMap.put(TEXTURE_ETC1, ETC1Util.isETC1Supported()); in updateSupportedFormats()
449 sFormatMap.put(TEXTURE_ATC, true); in updateSupportedFormats()
455 sFormatMap.put(TEXTURE_S3TC, true); in updateSupportedFormats()
459 sFormatMap.put(TEXTURE_PVRTC, true); in updateSupportedFormats()
470 Boolean supported = sFormatMap.get(format); in isFormatSupported()