glx: Remove unused bswap_CARD64

GCC warned about it:

../../../glx/indirect_dispatch_swap.c:85:1: warning: ‘bswap_CARD64’ defined but not used [-Wunused-function]
   85 | bswap_CARD64(const void *src)
      | ^~~~~~~~~~~~
This commit is contained in:
Michel Dänzer 2020-01-28 18:51:53 +01:00 committed by Michel Dänzer
parent 3ce05a44f3
commit b0530fe422
1 changed files with 0 additions and 12 deletions

View File

@ -81,18 +81,6 @@ bswap_ENUM(const void *src)
return x.ret;
}
static GLsync
bswap_CARD64(const void *src)
{
union {
uint64_t dst;
GLsync ret;
} x;
x.dst = bswap_64(*(uint64_t *) src);
return x.ret;
}
static GLdouble
bswap_FLOAT64(const void *src)
{