diff options
author | Kristian Høgsberg <[email protected]> | 2008-02-25 16:14:37 -0500 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2008-02-25 19:02:06 -0500 |
commit | 6e8d21d72f35767e07081a8bee4323aaaf5e2aae (patch) | |
tree | a4c11d15ae2e951364d29a915b006348e01c1d0b /src/mesa/drivers/dri/i810 | |
parent | b49a8f805aec057d9d0b039531b373b6bd8330e2 (diff) |
Remove GetMSC DriverAPI function.
The DriverAPI is internal to the DRI drivers and GetDrawableMSC
obsoletes GetMSC. Also, since the DRI driver interface has not yet
been released, just drop the getMSC function from the DRI interface
instead using the ABI preserving version mechanism.
Finally, using void pointer privates in the DRI interface is not allowed,
always pass the actual types around (__DRIdrawable in this case) to
enhance type safety and readability of the code.
Diffstat (limited to 'src/mesa/drivers/dri/i810')
-rw-r--r-- | src/mesa/drivers/dri/i810/i810screen.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i810/i810screen.c b/src/mesa/drivers/dri/i810/i810screen.c index 1a0d3c33d7b..a0d8103dc1c 100644 --- a/src/mesa/drivers/dri/i810/i810screen.c +++ b/src/mesa/drivers/dri/i810/i810screen.c @@ -412,7 +412,6 @@ static const struct __DriverAPIRec i810API = { .MakeCurrent = i810MakeCurrent, .UnbindContext = i810UnbindContext, .GetSwapInfo = NULL, - .GetMSC = NULL, .GetDrawableMSC = NULL, .WaitForMSC = NULL, .WaitForSBC = NULL, |