1package com.jme3.renderer.android;
2
3import android.opengl.GLES20;
4
5public class Android22Workaround {
6    public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){
7        GLES20.glVertexAttribPointer(location,
8                                     components,
9                                     format,
10                                     normalize,
11                                     stride,
12                                     offset);
13    }
14}
15