Lines Matching refs:framebufferFormatInfo

652                                               const InternalFormat &framebufferFormatInfo,  in IsValidES3CopyTexImageCombination()  argument
655 if (!ValidES3CopyConversion(textureFormatInfo.format, framebufferFormatInfo.format)) in IsValidES3CopyTexImageCombination()
666 (framebufferFormatInfo.colorEncoding == GL_SRGB)) in IsValidES3CopyTexImageCombination()
672 (framebufferFormatInfo.componentType == GL_INT)) || in IsValidES3CopyTexImageCombination()
674 (framebufferFormatInfo.componentType == GL_UNSIGNED_INT))) in IsValidES3CopyTexImageCombination()
682 !(framebufferFormatInfo.componentType == GL_UNSIGNED_NORMALIZED || in IsValidES3CopyTexImageCombination()
683 framebufferFormatInfo.componentType == GL_SIGNED_NORMALIZED || in IsValidES3CopyTexImageCombination()
684 framebufferFormatInfo.componentType == GL_FLOAT)) in IsValidES3CopyTexImageCombination()
708 if (framebufferFormatInfo.sized) in IsValidES3CopyTexImageCombination()
710 sourceEffectiveFormat = &framebufferFormatInfo; in IsValidES3CopyTexImageCombination()
718 &GetSizedInternalFormatInfo(framebufferFormatInfo.sizedInternalFormat); in IsValidES3CopyTexImageCombination()
725 if (framebufferFormatInfo.colorEncoding == GL_LINEAR) in IsValidES3CopyTexImageCombination()
728 if (GetEffectiveInternalFormat(framebufferFormatInfo, textureFormatInfo, in IsValidES3CopyTexImageCombination()
738 else if (framebufferFormatInfo.colorEncoding == GL_SRGB) in IsValidES3CopyTexImageCombination()
742 (framebufferFormatInfo.redBits >= 1 && framebufferFormatInfo.redBits <= 8) && in IsValidES3CopyTexImageCombination()
743 (framebufferFormatInfo.greenBits >= 1 && framebufferFormatInfo.greenBits <= 8) && in IsValidES3CopyTexImageCombination()
744 (framebufferFormatInfo.blueBits >= 1 && framebufferFormatInfo.blueBits <= 8) && in IsValidES3CopyTexImageCombination()
745 (framebufferFormatInfo.alphaBits >= 1 && framebufferFormatInfo.alphaBits <= 8)) in IsValidES3CopyTexImageCombination()