FileDocCategorySizeDatePackage
Int4.javaAPI DocAndroid 5.1 API1078Thu Mar 12 22:22:56 GMT 2015android.support.v8.renderscript

Int4

public class Int4 extends Object
Class for exposing the native RenderScript int4 type back to the Android system.

Fields Summary
public int
x
public int
y
public int
z
public int
w
Constructors Summary
public Int4()

    
public Int4(int initX, int initY, int initZ, int initW)

        x = initX;
        y = initY;
        z = initZ;
        w = initW;
    
Methods Summary