gba-x3dtest

view src/x3d_impl.h @ 18:f907b2c50a8b

added fps bar
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 26 Jun 2014 21:48:09 +0300
parents
children
line source
1 #ifndef X3D_IMPL_H_
2 #define X3D_IMPL_H_
4 struct texture {
5 int xsz, ysz;
6 unsigned int umask, vmask, ushift, vshift;
7 const void *pixels;
8 };
10 #endif /* X3D_IMPL_H_ */