summaryrefslogtreecommitdiffstats
path: root/src/gallium/include/pipe/p_context.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2015-04-29 15:04:34 +0200
committerMarek Olšák <[email protected]>2015-05-12 19:34:20 +0200
commitcacd0e290a7f510fe9cd78fde3156cd42f35a8b6 (patch)
tree4ee9c92fff33bbf4421def3b747e7c789d447ef0 /src/gallium/include/pipe/p_context.h
parenta533d4edf1ea346dd9e343c71b2cd500fa550ef8 (diff)
gallium: add an interface for querying a device reset status
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/gallium/include/pipe/p_context.h')
-rw-r--r--src/gallium/include/pipe/p_context.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h
index adff67a88c8..2d9f6d35dc9 100644
--- a/src/gallium/include/pipe/p_context.h
+++ b/src/gallium/include/pipe/p_context.h
@@ -562,6 +562,10 @@ struct pipe_context {
void (*invalidate_resource)(struct pipe_context *ctx,
struct pipe_resource *resource);
+ /**
+ * Return information about unexpected device resets.
+ */
+ enum pipe_reset_status (*get_device_reset_status)(struct pipe_context *ctx);
};