Re: [Dri-devel] gamma_alloc in drm_context.h

2002-06-25 Thread Alan Hourihane
On Tue, Jun 25, 2002 at 11:53:53 +0200, max wrote: > In drm_context.h at line 558 we have: > > queue = gamma_alloc(sizeof(*queue), DRM_MEM_QUEUES); > > I think it should be: > > queue = DRM(alloc)(sizeof(*queue), DRM_MEM_QUEUES); > > so that it works with driver different from gamma doing allo

[Dri-devel] gamma_alloc in drm_context.h

2002-06-25 Thread max
In drm_context.h at line 558 we have: queue = gamma_alloc(sizeof(*queue), DRM_MEM_QUEUES); I think it should be: queue = DRM(alloc)(sizeof(*queue), DRM_MEM_QUEUES); so that it works with driver different from gamma doing alloc_queue. Am I wrong? If not could someone fix that? Already done in m