aboutsummaryrefslogtreecommitdiff
path: root/engine/src/android/com/jme3/renderer/android/Android22Workaround.java
blob: 9c5bf587aa0ffd2591d598de89eb549b9610da84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.jme3.renderer.android;

import android.opengl.GLES20;

public class Android22Workaround {
    public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){
        GLES20.glVertexAttribPointer(location,
                                     components,
                                     format,
                                     normalize,
                                     stride,
                                     offset);
    }
}