From: Chia-I Wu Date: Sun, 24 Jan 2010 12:21:23 +0000 (+0800) Subject: egl: Remove unused casting functions. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=56b93a25ea5c573587ac699bf6806fe530f81b2f;p=mesa.git egl: Remove unused casting functions. _eglUIntToPointer and _eglPointerToUInt are no longer used. --- diff --git a/src/egl/main/egldisplay.h b/src/egl/main/egldisplay.h index 60ed7bcc039..b13ce082617 100644 --- a/src/egl/main/egldisplay.h +++ b/src/egl/main/egldisplay.h @@ -180,25 +180,4 @@ _eglIsResourceLinked(_EGLResource *res) } -/** - * Cast an unsigned int to a pointer. - */ -static INLINE void * -_eglUIntToPointer(unsigned int v) -{ - return (void *) ((uintptr_t) v); -} - - -/** - * Cast a pointer to an unsigned int. The pointer must be one that is - * returned by _eglUIntToPointer. - */ -static INLINE unsigned int -_eglPointerToUInt(const void *p) -{ - return (unsigned int) ((uintptr_t) p); -} - - #endif /* EGLDISPLAY_INCLUDED */