FileDocCategorySizeDatePackage
Texture.javaAPI DocAndroid 1.5 API1099Wed May 06 22:41:08 BST 2009com.android.globaltime

Texture

public class Texture extends Object

Fields Summary
private ByteBuffer
data
private int
width
private int
height
Constructors Summary
public Texture(ByteBuffer data, int width, int height)

        this.data = data;
        this.width = width;
        this.height = height;
    
Methods Summary
public java.nio.ByteBuffergetData()

        return data;
    
public intgetHeight()

        return height;
    
public intgetWidth()

        return width;