Lines Matching refs:fbo_format_info
1853 FboFormatInfo fbo_format_info; in checkFramebufferAttachmentCompleteness() local
1854 getBoundFramebufferFormat(target, attachment, &fbo_format_info); in checkFramebufferAttachmentCompleteness()
1858 switch (fbo_format_info.type) { in checkFramebufferAttachmentCompleteness()
1862 … renderable = fbo_format_info.rb_external || depthRenderableFormat(fbo_format_info.rb_format); in checkFramebufferAttachmentCompleteness()
1865 … renderable = fbo_format_info.rb_external || stencilRenderableFormat(fbo_format_info.rb_format); in checkFramebufferAttachmentCompleteness()
1868 renderable = fbo_format_info.rb_external || colorRenderableFormat( in checkFramebufferAttachmentCompleteness()
1869 fbo_format_info.rb_format, in checkFramebufferAttachmentCompleteness()
1880 …renderable = fbo_format_info.tex_external || depthRenderableFormat(fbo_format_info.tex_internalfor… in checkFramebufferAttachmentCompleteness()
1883 …renderable = fbo_format_info.tex_external || stencilRenderableFormat(fbo_format_info.tex_internalf… in checkFramebufferAttachmentCompleteness()
1886 renderable = fbo_format_info.tex_external || colorRenderableFormat( in checkFramebufferAttachmentCompleteness()
1887 fbo_format_info.tex_internalformat, in checkFramebufferAttachmentCompleteness()
1888 fbo_format_info.tex_type, in checkFramebufferAttachmentCompleteness()
1901 switch (fbo_format_info.type) { in checkFramebufferAttachmentCompleteness()
1905 __func__, target, attachment, fbo_format_info.rb_format, in checkFramebufferAttachmentCompleteness()
1914 __func__, target, attachment, fbo_format_info.tex_internalformat, in checkFramebufferAttachmentCompleteness()
1915 fbo_format_info.tex_format, fbo_format_info.tex_type, m_glesMajorVersion, in checkFramebufferAttachmentCompleteness()
1928 switch (fbo_format_info.type) { in checkFramebufferAttachmentCompleteness()
1931 if (!fbo_format_info.rb_external) { in checkFramebufferAttachmentCompleteness()
1940 if (!fbo_format_info.tex_external) { in checkFramebufferAttachmentCompleteness()
1941 if (0 == texrec->dims->widths[fbo_format_info.tex_level] || in checkFramebufferAttachmentCompleteness()
1942 0 == texrec->dims->heights[fbo_format_info.tex_level]) { in checkFramebufferAttachmentCompleteness()
1946 GLsizei depth = texrec->dims->depths[fbo_format_info.tex_level]; in checkFramebufferAttachmentCompleteness()
1947 if (fbo_format_info.tex_layer >= depth) { in checkFramebufferAttachmentCompleteness()
1949 fbo_format_info.tex_layer, depth); in checkFramebufferAttachmentCompleteness()
1963 switch (fbo_format_info.type) { in checkFramebufferAttachmentCompleteness()
1965 samplesThisAttachment = fbo_format_info.rb_multisamples; in checkFramebufferAttachmentCompleteness()
1968 samplesThisAttachment = fbo_format_info.tex_multisamples; in checkFramebufferAttachmentCompleteness()