gallium: add bool return to pipe_context::end_query
[mesa.git] / src / gallium / drivers / freedreno / freedreno_query.c
index a9427058579dc1af711e28e03c90e7ba975853aa..18e0c793c51a2d93061a897939f6611b7d2cd129 100644 (file)
@@ -66,11 +66,12 @@ fd_begin_query(struct pipe_context *pctx, struct pipe_query *pq)
        return q->funcs->begin_query(fd_context(pctx), q);
 }
 
-static void
+static bool
 fd_end_query(struct pipe_context *pctx, struct pipe_query *pq)
 {
        struct fd_query *q = fd_query(pq);
        q->funcs->end_query(fd_context(pctx), q);
+       return true;
 }
 
 static boolean