diff options
author | Toni Lönnberg <[email protected]> | 2018-10-29 16:05:10 +0200 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2018-10-30 12:43:00 +0000 |
commit | 50e952840f5a194af0e89fac3383a0c32132f065 (patch) | |
tree | 29864721466f12a399738fefa6de953e20a5c6d2 /src/intel/tools/aub_read.h | |
parent | d5a938c58d058270990d5e077ed5b72384c001de (diff) |
intel: tools: Add handling for video pipe
Preliminary work for adding handling of different pipes to gen_decoder. We
need to be able to distinguish between different pipes in order to decode
the packets correctly due to opcode re-use.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/tools/aub_read.h')
-rw-r--r-- | src/intel/tools/aub_read.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/intel/tools/aub_read.h b/src/intel/tools/aub_read.h index 3502c0887bb..e48ac3164bc 100644 --- a/src/intel/tools/aub_read.h +++ b/src/intel/tools/aub_read.h @@ -35,7 +35,8 @@ extern "C" { enum gen_engine { GEN_ENGINE_RENDER = 1, - GEN_ENGINE_BLITTER = 2, + GEN_ENGINE_VIDEO = 2, + GEN_ENGINE_BLITTER = 3, }; struct aub_read { @@ -62,6 +63,8 @@ struct aub_read { /* Reader's data */ uint32_t render_elsp[4]; int render_elsp_index; + uint32_t video_elsp[4]; + int video_elsp_index; uint32_t blitter_elsp[4]; int blitter_elsp_index; |