continue;
}
- if (!intel_span_supports_format(irb->Base.Format) ||
- !intel->vtbl.render_target_supported(intel, irb->Base.Format)) {
- DBG("Unsupported texture/renderbuffer format attached: %s\n",
+ if (!intel->vtbl.render_target_supported(intel, irb->Base.Format)) {
+ DBG("Unsupported HW texture/renderbuffer format attached: %s\n",
_mesa_get_format_name(irb->Base.Format));
fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
}
+
+#ifdef I915
+ if (!intel_span_supports_format(irb->Base.Format)) {
+ DBG("Unsupported swrast texture/renderbuffer format attached: %s\n",
+ _mesa_get_format_name(irb->Base.Format));
+ fb->_Status = GL_FRAMEBUFFER_UNSUPPORTED_EXT;
+ }
+#endif
}
}