5051525354555657585960
vertex.compile(); fragment.compile(); program.link(); program.validate(); buffer = new GLVertexBuffer(gl); buffer.bind(); buffer.setData(data); buffer.unbind(); } catch (Exception ex) { ex.printStackTrace();
50515253545556575859
vertex.compile(); fragment.compile(); program.link(); program.validate(); buffer = new GLVertexBuffer(gl, data); } catch (Exception ex) { ex.printStackTrace(); } }
5455565758596061626364