git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8658 75d07b2b-3a1a-0410-a2c5-0572b91ccdca3.0
parent
270703ca58
commit
6110509b8e
@ -0,0 +1,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); |
||||
} |
||||
} |
Loading…
Reference in new issue