diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-03-22 18:05:36 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-03-22 18:05:36 -0400 |
commit | dda3f5a99e7a2dc5d57860f4d07df3498e1e21df (patch) | |
tree | 51f0dc6337e8552da63c768ffa19be05a4955aa3 /src/radeon.h | |
parent | 5c256808cb5fea955eea96ffe9196473715156aa (diff) |
r6xx EXA/Xv: track src/dst domains
Much of the code is shared, so track the src/dst
domains so we make sure the uses consistent domains
for each bo.
Diffstat (limited to 'src/radeon.h')
-rw-r--r-- | src/radeon.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/radeon.h b/src/radeon.h index 221d6e73..a48358b7 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -762,12 +762,14 @@ struct radeon_accel_state { uint32_t src_width[2]; uint32_t src_height[2]; uint32_t src_bpp[2]; + uint32_t src_domain[2]; struct radeon_bo *dst_bo; uint32_t dst_size; uint64_t dst_mc_addr; uint32_t dst_pitch; uint32_t dst_height; uint32_t dst_bpp; + uint32_t dst_domain; uint32_t vs_size; uint64_t vs_mc_addr; uint32_t ps_size; |