diff options
author | Alok Hota <[email protected]> | 2018-09-07 15:17:53 -0500 |
---|---|---|
committer | Alok Hota <[email protected]> | 2019-05-01 15:11:30 +0000 |
commit | b8adb540a0dca76bab94bb52de3dbfb4a4faf726 (patch) | |
tree | 5d77401f7d56b5d986862f012e7f01f01c0af965 /src/gallium/drivers/swr/rasterizer/archrast | |
parent | f355f03388830e585e9735a89c470770ac8e323a (diff) |
swr/rast: Add string handling to AR event framework
For use by an internal tool
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/rasterizer/archrast')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/archrast/events.proto | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/archrast/events.proto b/src/gallium/drivers/swr/rasterizer/archrast/events.proto index fd803830101..aedc37b7440 100644 --- a/src/gallium/drivers/swr/rasterizer/archrast/events.proto +++ b/src/gallium/drivers/swr/rasterizer/archrast/events.proto @@ -129,7 +129,7 @@ event EarlyZSingleSample uint32_t drawId; uint64_t passCount; uint64_t failCount; -}; +}; event LateZSingleSample { @@ -157,7 +157,7 @@ event EarlyZSampleRate uint32_t drawId; uint64_t passCount; uint64_t failCount; -}; +}; event LateZSampleRate { @@ -186,7 +186,7 @@ event EarlyZ uint32_t drawId; uint64_t passCount; uint64_t failCount; -}; +}; // Total LateZ counts, SingleSample and SampleRate event LateZ @@ -445,5 +445,6 @@ event SWTagDispatchEvent event SWTagFlushEvent { uint32_t drawId; - uint32_t flushType; + char flushReason[256]; + uint32_t flushType; };
\ No newline at end of file |