From a296cc268471fa0dfa092aebc0dd5e092494075c Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Thu, 15 Jul 2021 19:39:50 -0700 Subject: [PATCH] gallium: Remove dead pb_malloc_buffer_create function prototype This was deleted by commit ec686a66dbf2180631564a3877884b1e4d0c8ea4. Reviewed-by: Pierre-Eric Pelloux-Prayer Reviewed-by: Mike Blumenkrantz Part-of: --- src/gallium/auxiliary/pipebuffer/pb_buffer.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/gallium/auxiliary/pipebuffer/pb_buffer.h b/src/gallium/auxiliary/pipebuffer/pb_buffer.h index f7389795299..7e3e8a4b168 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_buffer.h +++ b/src/gallium/auxiliary/pipebuffer/pb_buffer.h @@ -310,16 +310,6 @@ pb_check_usage(unsigned requested, unsigned provided) return (requested & provided) == requested ? TRUE : FALSE; } - -/** - * Malloc-based buffer to store data that can't be used by the graphics - * hardware. - */ -struct pb_buffer * -pb_malloc_buffer_create(pb_size size, - const struct pb_desc *desc); - - #ifdef __cplusplus } #endif