diff options
author | Patrice Mandin <[email protected]> | 2007-08-21 16:53:13 +0200 |
---|---|---|
committer | Patrice Mandin <[email protected]> | 2007-08-21 16:53:13 +0200 |
commit | a6d35694c4570368f718f78bd85a21a626b7cdc9 (patch) | |
tree | fc251b06d19327124b6f38e58168ab3105781af3 /src | |
parent | c6e729377cd1b1e7b5a1a22c40cee80b15a799f7 (diff) |
nouveau: Use proper notifier object
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_object.c b/src/mesa/drivers/dri/nouveau/nouveau_object.c index 4169530be67..83867574d32 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_object.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_object.c @@ -73,12 +73,12 @@ void nouveauObjectInit(nouveauContextPtr nmesa) nouveauObjectOnSubchannel(nmesa, NvSubRasterOp, NvRasterOp); BEGIN_RING_SIZE(NvSubRasterOp, NV03_PRIMITIVE_RASTER_OP_DMA_NOTIFY, 1); - OUT_RING(NvDmaFB); + OUT_RING(NvSyncNotify); nouveauObjectOnSubchannel(nmesa, NvSubGdiRectText, NvGdiRectText); BEGIN_RING_SIZE(NvSubGdiRectText, NV04_GDI_RECTANGLE_TEXT_SET_DMA_NOTIFY, 1); - OUT_RING(NvDmaFB); + OUT_RING(NvSyncNotify); BEGIN_RING_SIZE(NvSubGdiRectText, NV04_GDI_RECTANGLE_TEXT_PATTERN, 2); OUT_RING(NvPattern); OUT_RING(NvRasterOp); |