Back to project page jmini3d.
The source code is released under:
Copyright 2012 Mobialia http://www.mobialia.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to ...
If you think the Android project jmini3d listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package jmini3d; public class GpuObjectStatus { public static final int TEXTURE_UPLOADING = 0x1; public static final int TEXTURE_UPLOADED = 0x2; public static final int VERTICES_UPLOADED = 0x4; public static final int NORMALS_UPLOADED = 0x8; public static final int UVS_UPLOADED = 0x10; public static final int FACES_UPLOADED = 0x20; }