Lines Matching refs:framebufferFormatInfo
968 const InternalFormat &framebufferFormatInfo, in IsValidES3CopyTexImageCombination() argument
971 if (!ValidES3CopyConversion(textureFormatInfo.format, framebufferFormatInfo.format)) in IsValidES3CopyTexImageCombination()
982 (framebufferFormatInfo.colorEncoding == GL_SRGB)) in IsValidES3CopyTexImageCombination()
988 (framebufferFormatInfo.componentType == GL_INT)) || in IsValidES3CopyTexImageCombination()
990 (framebufferFormatInfo.componentType == GL_UNSIGNED_INT))) in IsValidES3CopyTexImageCombination()
997 !(framebufferFormatInfo.componentType == GL_UNSIGNED_NORMALIZED || in IsValidES3CopyTexImageCombination()
998 framebufferFormatInfo.componentType == GL_SIGNED_NORMALIZED)) in IsValidES3CopyTexImageCombination()
1015 if (!textureFormatInfo.sized && (framebufferFormatInfo.internalFormat == GL_RGB10_A2)) in IsValidES3CopyTexImageCombination()
1039 if (framebufferFormatInfo.sized) in IsValidES3CopyTexImageCombination()
1041 sourceEffectiveFormat = &framebufferFormatInfo; in IsValidES3CopyTexImageCombination()
1049 &GetSizedInternalFormatInfo(framebufferFormatInfo.sizedInternalFormat); in IsValidES3CopyTexImageCombination()
1056 if (framebufferFormatInfo.colorEncoding == GL_LINEAR) in IsValidES3CopyTexImageCombination()
1059 if (GetEffectiveInternalFormat(framebufferFormatInfo, textureFormatInfo, in IsValidES3CopyTexImageCombination()
1069 else if (framebufferFormatInfo.colorEncoding == GL_SRGB) in IsValidES3CopyTexImageCombination()
1073 (framebufferFormatInfo.redBits >= 1 && framebufferFormatInfo.redBits <= 8) && in IsValidES3CopyTexImageCombination()
1074 (framebufferFormatInfo.greenBits >= 1 && framebufferFormatInfo.greenBits <= 8) && in IsValidES3CopyTexImageCombination()
1075 (framebufferFormatInfo.blueBits >= 1 && framebufferFormatInfo.blueBits <= 8) && in IsValidES3CopyTexImageCombination()
1076 (framebufferFormatInfo.alphaBits >= 1 && framebufferFormatInfo.alphaBits <= 8)) in IsValidES3CopyTexImageCombination()