mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-16 20:38:06 +02:00
i830: Add missing vtable entry for i830 from the hiz work.
(cherry picked from commit 09eeb0ff27)
This commit is contained in:
parent
2217a70aaf
commit
e20346bfc8
1 changed files with 7 additions and 0 deletions
|
|
@ -883,6 +883,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)
|
||||
{
|
||||
|
|
@ -900,4 +906,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