diff options
author | Jakob Bornecrantz <[email protected]> | 2009-11-18 22:50:26 +0000 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-11-18 10:59:42 +0100 |
commit | e12c9a6f3af6ec10cbd2e5cd2a6b90056652a2c0 (patch) | |
tree | 9f0c7e363dde63c9c64208d71fc3a94e024942e1 /src/gallium/state_trackers/xorg | |
parent | cde66437247feb8b14b6d8f3ec3a8b4665fefa08 (diff) |
st/xorg: Init all functions and fix spelling
Diffstat (limited to 'src/gallium/state_trackers/xorg')
-rw-r--r-- | src/gallium/state_trackers/xorg/xorg_dri2.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/xorg/xorg_dri2.c b/src/gallium/state_trackers/xorg/xorg_dri2.c index bd4acf7f82d..aca889d6f8c 100644 --- a/src/gallium/state_trackers/xorg/xorg_dri2.c +++ b/src/gallium/state_trackers/xorg/xorg_dri2.c @@ -355,7 +355,7 @@ driScreenInit(ScreenPtr pScreen) modesettingPtr ms = modesettingPTR(pScrn); DRI2InfoRec dri2info; -#if DRI2INFORCE_VERSION >= 2 +#if DRI2INFOREC_VERSION >= 2 dri2info.version = DRI2INFOREC_VERSION; #else dri2info.version = 1; @@ -368,6 +368,8 @@ driScreenInit(ScreenPtr pScreen) #if DRI2INFOREC_VERSION >= 2 dri2info.CreateBuffer = driCreateBuffer; dri2info.DestroyBuffer = driDestroyBuffer; + dri2info.CreateBuffers = NULL; + dri2info.DestroyBuffers = NULL; #else dri2info.CreateBuffers = driCreateBuffers; dri2info.DestroyBuffers = driDestroyBuffers; |