image.h - changes for Xbox

This commit is contained in:
twinaphex 2015-03-30 02:12:25 +02:00
parent 7c1d3471f6
commit aed83be281

View File

@ -35,11 +35,10 @@ struct texture_image
#ifdef _XBOX1
unsigned x;
unsigned y;
LPDIRECT3DTEXTURE pixels;
LPDIRECT3DTEXTURE texture_buf;
LPDIRECT3DVERTEXBUFFER vertex_buf;
#else
uint32_t *pixels;
#endif
uint32_t *pixels;
};
bool texture_image_load(struct texture_image *img, const char *path);