r300: Corrected another error; regexp replaced something it shouldn't have.

This commit is contained in:
Oliver McFadden
2007-05-11 22:26:47 +00:00
parent f405fbb36d
commit 93f9e61f43
+1 -16
View File
@@ -107,27 +107,12 @@ extern int prevLockLine;
DEBUG_LOCK(); \
} while (0)
#if R200_MERGED
#define UNLOCK_HARDWARE( rmesa ) \
do { \
DRM_UNLOCK((rmesa)->dri.fd, \
(rmesa)->dri.hwLock, \
(rmesa)->dri.hwContext); \
DEBUG_RESET(); \
if (IS_R200_CLASS((rmesa)->radeonScreen)) { \
r200ContextPtr __r200 = (r200ContextPtr)(rmesa); \
if (__r200->save_on_next_unlock) \
r200SaveHwState(__r200); \
__r200->save_on_next_unlock = GL_FALSE; \
} \
} while (0)
#else
#define UNLOCK_HARDWARErmesa \
do { \
DRM_UNLOCK((rmesa)->dri.fd, \
(rmesa)->dri.hwLock, \
(rmesa)->dri.hwContext); \
DEBUG_RESET(); \
} while (0)
#endif
#endif /* __RADEON_LOCK_H__ */