Add xf86DeallocateGARTMemory stub so that Xorg can be built on Solaris
again.
This commit is contained in:
parent
7c1148c0fb
commit
e7502158d6
|
@ -235,6 +235,12 @@ xf86AllocateGARTMemory(int screenNum, unsigned long size, int type,
|
||||||
return alloc.agpa_key;
|
return alloc.agpa_key;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Bool
|
||||||
|
xf86DeallocateGARTMemory(int screenNum, int key)
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/* Bind GART memory with "key" at "offset" */
|
/* Bind GART memory with "key" at "offset" */
|
||||||
Bool
|
Bool
|
||||||
xf86BindGARTMemory(int screenNum, int key, unsigned long offset)
|
xf86BindGARTMemory(int screenNum, int key, unsigned long offset)
|
||||||
|
|
Loading…
Reference in New Issue