• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.jme3.renderer.android;
2 
3 import android.opengl.GLES20;
4 
5 public class Android22Workaround {
glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset)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