• Home
  • Raw
  • Download

Lines Matching refs:attribMap

534                                       const AttributeMap &attribMap)  in ValidateGetPlatformDisplayCommon()  argument
559 attribMap.initializeWithoutValidation(); in ValidateGetPlatformDisplayCommon()
575 for (const auto &curAttrib : attribMap) in ValidateGetPlatformDisplayCommon()
846 if (attribMap.get(EGL_PLATFORM_ANGLE_D3D_LUID_HIGH_ANGLE, 0) == 0 && in ValidateGetPlatformDisplayCommon()
847 attribMap.get(EGL_PLATFORM_ANGLE_D3D_LUID_LOW_ANGLE, 0) == 0) in ValidateGetPlatformDisplayCommon()
859 if (attribMap.get(EGL_PLATFORM_ANGLE_DEVICE_ID_HIGH_ANGLE, 0) == 0 && in ValidateGetPlatformDisplayCommon()
860 attribMap.get(EGL_PLATFORM_ANGLE_DEVICE_ID_LOW_ANGLE, 0) == 0) in ValidateGetPlatformDisplayCommon()
939 if (attribMap.contains(EGL_POWER_PREFERENCE_ANGLE)) in ValidateGetPlatformDisplayCommon()
948 EGLAttrib value = attribMap.get(EGL_POWER_PREFERENCE_ANGLE, 0); in ValidateGetPlatformDisplayCommon()
958 if (attribMap.contains(EGL_FEATURE_OVERRIDES_ENABLED_ANGLE)) in ValidateGetPlatformDisplayCommon()
965 else if (attribMap.get(EGL_FEATURE_OVERRIDES_ENABLED_ANGLE, 0) == 0) in ValidateGetPlatformDisplayCommon()
972 if (attribMap.contains(EGL_FEATURE_OVERRIDES_DISABLED_ANGLE)) in ValidateGetPlatformDisplayCommon()
979 else if (attribMap.get(EGL_FEATURE_OVERRIDES_DISABLED_ANGLE, 0) == 0) in ValidateGetPlatformDisplayCommon()
5047 const AttributeMap &attribMap) in ValidateGetPlatformDisplay() argument
5049 return ValidateGetPlatformDisplayCommon(val, platform, native_display, attribMap); in ValidateGetPlatformDisplay()
5055 const AttributeMap &attribMap) in ValidateGetPlatformDisplayEXT() argument
5057 return ValidateGetPlatformDisplayCommon(val, platform, native_display, attribMap); in ValidateGetPlatformDisplayEXT()
5922 const egl::AttributeMap &attribMap) in ValidateCreateNativeClientBufferANDROID() argument
5924 attribMap.initializeWithoutValidation(); in ValidateCreateNativeClientBufferANDROID()
5926 if (attribMap.isEmpty() || attribMap.begin()->second == EGL_NONE) in ValidateCreateNativeClientBufferANDROID()
5932 int width = attribMap.getAsInt(EGL_WIDTH, 0); in ValidateCreateNativeClientBufferANDROID()
5933 int height = attribMap.getAsInt(EGL_HEIGHT, 0); in ValidateCreateNativeClientBufferANDROID()
5934 int redSize = attribMap.getAsInt(EGL_RED_SIZE, 0); in ValidateCreateNativeClientBufferANDROID()
5935 int greenSize = attribMap.getAsInt(EGL_GREEN_SIZE, 0); in ValidateCreateNativeClientBufferANDROID()
5936 int blueSize = attribMap.getAsInt(EGL_BLUE_SIZE, 0); in ValidateCreateNativeClientBufferANDROID()
5937 int alphaSize = attribMap.getAsInt(EGL_ALPHA_SIZE, 0); in ValidateCreateNativeClientBufferANDROID()
5938 int usage = attribMap.getAsInt(EGL_NATIVE_BUFFER_USAGE_ANDROID, 0); in ValidateCreateNativeClientBufferANDROID()
5940 for (AttributeMap::const_iterator attributeIter = attribMap.begin(); in ValidateCreateNativeClientBufferANDROID()
5941 attributeIter != attribMap.end(); attributeIter++) in ValidateCreateNativeClientBufferANDROID()
5986 if (gl::GetAndroidHardwareBufferFormatFromChannelSizes(attribMap) == 0) in ValidateCreateNativeClientBufferANDROID()