For the upcoming conversion of perfmon queries to the acc query
framework we need a way to tell that the data is not ready.
Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/1530>
resource_written(ctx, aq->prsc);
}
-static void
+static bool
occlusion_result(struct etna_acc_query *aq, void *buf,
union pipe_query_result *result)
{
result->u64 = sum;
else
result->b = !!sum;
+
+ return true;
}
static void
return false;
void *ptr = etna_bo_map(rsc->bo);
- p->result(aq, ptr, result);
- aq->samples = 0;
+ bool success = p->result(aq, ptr, result);
+
+ if (success)
+ aq->samples = 0;
etna_bo_cpu_fini(rsc->bo);
- return true;
+ return success;
}
static const struct etna_query_funcs acc_query_funcs = {
void (*resume)(struct etna_acc_query *aq, struct etna_context *ctx);
void (*suspend)(struct etna_acc_query *aq, struct etna_context *ctx);
- void (*result)(struct etna_acc_query *aq, void *buf,
- union pipe_query_result *result);
+ bool (*result)(struct etna_acc_query *aq, void *buf,
+ union pipe_query_result *result);
};
struct etna_acc_query {