diff options
author | Eric Anholt <[email protected]> | 2011-01-07 15:45:33 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-01-07 17:49:03 -0800 |
commit | a7bf7230564ac282cc957207224d16f322fa73d8 (patch) | |
tree | c5e2c2e3b764eb6eb985f6f27dfd4c05712644d2 /src/mesa/drivers/dri/i965/brw_wm.h | |
parent | f3240547f978bd6c572c0cf17b05e0c5c6087a9e (diff) |
intel: Add a vtbl hook for determining if a format is renderable.
By relying on just intel_span_supports_format, some formats that
aren't supported pre-gen4 were not reporting FBO incomplete. And we
also complained in stderr when it happened on i915 because draw_region
gets called before framebuffer completeness validation.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_wm.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm.h b/src/mesa/drivers/dri/i965/brw_wm.h index e7f3cfbb75f..d9cae75ab5b 100644 --- a/src/mesa/drivers/dri/i965/brw_wm.h +++ b/src/mesa/drivers/dri/i965/brw_wm.h @@ -474,5 +474,6 @@ struct gl_shader *brw_new_shader(struct gl_context *ctx, GLuint name, GLuint typ struct gl_shader_program *brw_new_shader_program(struct gl_context *ctx, GLuint name); bool brw_color_buffer_write_enabled(struct brw_context *brw); +bool brw_render_target_supported(gl_format format); #endif |