diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2010-03-02 21:53:15 +0100 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-03-04 09:38:37 -0800 |
commit | 18c364084ce5495ffdfea38c17c1297d555c6c54 (patch) | |
tree | 1c9718e4aaf626186f04eb73ef3f730f0b34e78c /src/xvmc/i915_xvmc.h | |
parent | fc9e44f01910eb9fd43def9b2ac531b0742d8b4e (diff) |
i915 XvMC: switch ssb to drm_intel_bo
This also starts to kill the last remnants of the support for
physical addresses for the indirect state buffers. With gem this
would need kernel support (in the form of a new reloc type in
execbuf2).
This does not change the ABI between ddx and client libIntelXvMC.
I've decided to do this in one swoop when all the buffer rework is
done.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Carl Worth <cworth@cworth.org>
Diffstat (limited to 'src/xvmc/i915_xvmc.h')
-rw-r--r-- | src/xvmc/i915_xvmc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xvmc/i915_xvmc.h b/src/xvmc/i915_xvmc.h index d85d9c19..e46ad381 100644 --- a/src/xvmc/i915_xvmc.h +++ b/src/xvmc/i915_xvmc.h @@ -67,7 +67,7 @@ typedef struct _i915XvMCContext { intel_xvmc_drm_map_t sis; intel_xvmc_drm_map_t msb; - intel_xvmc_drm_map_t ssb; + drm_intel_bo *ssb_bo; intel_xvmc_drm_map_t psp; intel_xvmc_drm_map_t psc; intel_xvmc_drm_map_t corrdata; |