diff --git a/src/vrend_renderer.c b/src/vrend_renderer.c index 5d4bcc2..d92f7eb 100644 --- a/src/vrend_renderer.c +++ b/src/vrend_renderer.c @@ -662,11 +662,6 @@ static inline bool vrend_format_is_ds(enum virgl_formats format) return tex_conv_table[format].bindings & VIRGL_BIND_DEPTH_STENCIL; } -bool vrend_is_ds_format(enum virgl_formats format) -{ - return vrend_format_is_ds(format); -} - bool vrend_format_is_emulated_alpha(enum virgl_formats format) { if (vrend_state.use_gles || !vrend_state.use_core_profile) diff --git a/src/vrend_renderer.h b/src/vrend_renderer.h index 9ea7cd8..38f9b17 100644 --- a/src/vrend_renderer.h +++ b/src/vrend_renderer.h @@ -423,7 +423,6 @@ void vrend_report_buffer_error(struct vrend_context *ctx, int cmd); void vrend_fb_bind_texture(struct vrend_resource *res, int idx, uint32_t level, uint32_t layer); -bool vrend_is_ds_format(enum virgl_formats format); bool vrend_format_is_emulated_alpha(enum virgl_formats format); boolean format_is_copy_compatible(enum pipe_format src, enum pipe_format dst, boolean allow_compressed);