egl: Remove unused casting functions.
authorChia-I Wu <olvaffe@gmail.com>
Sun, 24 Jan 2010 12:21:23 +0000 (20:21 +0800)
committerChia-I Wu <olvaffe@gmail.com>
Sun, 24 Jan 2010 12:38:16 +0000 (20:38 +0800)
_eglUIntToPointer and _eglPointerToUInt are no longer used.

src/egl/main/egldisplay.h

index 60ed7bcc039d70a2d9f16b84e0b76fad8373b2a4..b13ce08261774d71bb8ea0914145afc59a8cb742 100644 (file)
@@ -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 */