diff options
author | Stephane Marchesin <[email protected]> | 2006-12-03 09:08:26 +0000 |
---|---|---|
committer | Stephane Marchesin <[email protected]> | 2006-12-03 09:08:26 +0000 |
commit | d88d895e5a642cffaaf6b654b27686f2eac901d2 (patch) | |
tree | 25d6400daef9dd41303717ff104c92cbcbac4206 /src/mesa/drivers/dri/nouveau/nouveau_fifo.h | |
parent | b4dcb99cbc21ad1dafa12e31086f9e0d5fc05e81 (diff) |
Merge the pciid work. Use lock step versioning with the drm.
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nouveau_fifo.h')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_fifo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_fifo.h b/src/mesa/drivers/dri/nouveau/nouveau_fifo.h index 44b9f356d15..51993cf5565 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_fifo.h +++ b/src/mesa/drivers/dri/nouveau/nouveau_fifo.h @@ -60,7 +60,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. #define OUT_RINGp(ptr,sz) do { \ uint32_t* p=(uint32_t*)(ptr); \ -int i; printf("OUT_RINGp: (size 0x%x dwords)\n",sz); for(i=0;i<sz;i++) printf(" 0x%08x\n", *(p+i)); \ +int i; printf("OUT_RINGp: (size 0x%x dwords)\n",sz); for(i=0;i<sz;i++) printf(" 0x%08x %f\n", *(p+i), *((float*)(p+i))); \ }while(0) #define OUT_RING(n) do { \ |