com.android.grafika.gles.Drawable2d Java Examples

The following examples show how to use com.android.grafika.gles.Drawable2d. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Right.java    From IjkVRPlayer with Apache License 2.0 4 votes vote down vote up
@Override
protected Drawable2d createDrawable2d() {
    // TODO: use the half of 'full' rectangle instead?
    return new Drawable2d(Drawable2d.Prefab.FULL_RECTANGLE);
}
 
Example #2
Source File: Left.java    From IjkVRPlayer with Apache License 2.0 4 votes vote down vote up
@Override
protected Drawable2d createDrawable2d() {
    // TODO: use the half of 'full' rectangle instead?
    return new Drawable2d(Drawable2d.Prefab.FULL_RECTANGLE);
}
 
Example #3
Source File: Square.java    From IjkVRPlayer with Apache License 2.0 votes vote down vote up
protected abstract Drawable2d createDrawable2d();