Back to project page glvideoplayer-android.
The source code is released under:
Apache License
If you think the Android project glvideoplayer-android 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 net.binzume.android.glvideoplayer; //w w w .java 2 s . c o m /** * ?????? * * @author kosuke_kawahira */ public class Texture { /** * ?????????? * * OpenGL?????????????? */ public final int id; /** * ????????????????????? */ public final int width, height; public Texture(int id, int width, int height) { this.id = id; this.width = width; this.height = height; } }