diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-08-25 18:45:49 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-08-25 18:45:49 -0400 |
commit | 9aa214e125b7927d62b9fe124a851d0373c24d7e (patch) | |
tree | 45217ff4c5848d53c3ff1bf3d50f6c385f71c4e8 | |
parent | bba51187055932ecd466f5f817428d6c773747b9 (diff) |
r6xx/r7xx: fix reloc for vtx buffer
-rw-r--r-- | src/r6xx_accel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/r6xx_accel.c b/src/r6xx_accel.c index 6e4c8eac..8a2b1ae2 100644 --- a/src/r6xx_accel.c +++ b/src/r6xx_accel.c @@ -494,7 +494,7 @@ set_vtx_resource(ScrnInfoPtr pScrn, drmBufPtr ib, vtx_resource_t *res) E32(ib, 0); // 4: n/a E32(ib, 0); // 5: n/a E32(ib, SQ_TEX_VTX_VALID_BUFFER << SQ_VTX_CONSTANT_WORD6_0__TYPE_shift); // 6: TYPE - RELOC_BATCH(res->bo, RADEON_GEM_DOMAIN_VRAM, 0); + RELOC_BATCH(res->bo, RADEON_GEM_DOMAIN_GTT, 0); END_BATCH(); } |