android builds now include both 64 and 32bit in the APK
[andemo] / libs / psys / pattr.c
index 9f0f9ad..8046e02 100644 (file)
@@ -30,7 +30,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #endif
 
 #include "pattr.h"
-#include "psys_gl.h"
 
 enum {
        OPT_STR,
@@ -55,8 +54,8 @@ static void release_cfg_opt(struct cfgopt *opt);
 static char *stripspace(char *str);
 
 static void *tex_cls;
-static unsigned int (*load_texture)(const char*, void*) = psys_gl_load_texture;
-static void (*unload_texture)(unsigned int, void*) = psys_gl_unload_texture;
+static unsigned int (*load_texture)(const char*, void*);
+static void (*unload_texture)(unsigned int, void*);
 
 
 void psys_texture_loader(unsigned int (*load)(const char*, void*), void (*unload)(unsigned int, void*), void *cls)