mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 17:40:11 +01:00
i830: Add missing vtable entry for i830 from the hiz work.
This commit is contained in:
parent
c9e81fe14f
commit
09eeb0ff27
1 changed files with 7 additions and 0 deletions
|
|
@ -881,6 +881,12 @@ i830_invalidate_state(struct intel_context *intel, GLuint new_state)
|
|||
i830_update_provoking_vertex(&intel->ctx);
|
||||
}
|
||||
|
||||
static bool
|
||||
i830_is_hiz_depth_format(struct intel_context *intel, gl_format format)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
void
|
||||
i830InitVtbl(struct i830_context *i830)
|
||||
{
|
||||
|
|
@ -898,4 +904,5 @@ i830InitVtbl(struct i830_context *i830)
|
|||
i830->intel.vtbl.finish_batch = intel_finish_vb;
|
||||
i830->intel.vtbl.invalidate_state = i830_invalidate_state;
|
||||
i830->intel.vtbl.render_target_supported = i830_render_target_supported;
|
||||
i830->intel.vtbl.is_hiz_depth_format = i830_is_hiz_depth_format;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue