diff options
author | Ben Skeggs <[email protected]> | 2006-12-27 15:54:30 +1100 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2006-12-27 23:53:25 +1100 |
commit | 1780fd4eeeef2358e929c23cfae2c348cb4a709e (patch) | |
tree | 1c6f98b794d69d79ea9cc28cd3ac4d8dcc04dd4c | |
parent | 885a7cc38d80366396f463a54ef4af00c9fd07ff (diff) |
nouveau: We'll need syncNotifier for NV_MEMORY_TO_MEMORY_FORMAT too.
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_sync.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_sync.c b/src/mesa/drivers/dri/nouveau/nouveau_sync.c index e27101d8689..0bf20e723bb 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_sync.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_sync.c @@ -125,6 +125,11 @@ GLboolean nouveauSyncInitFuncs(GLcontext *ctx) */ BEGIN_RING_CACHE(NvSub3D, 0x180, 1); OUT_RING_CACHE (NvSyncNotify); +#ifdef ALLOW_MULTI_SUBCHANNEL + BEGIN_RING_SIZE(NvSubMemFormat, + NV_MEMORY_TO_MEMORY_FORMAT_DMA_NOTIFY, 1); + OUT_RING (NvSyncNotify); +#endif return GL_TRUE; } |