2
0

WebGLShader.js 244 B

12345678910111213141516
  1. /**
  2. * @author mrdoob / http://mrdoob.com/
  3. */
  4. function WebGLShader( gl, type, string ) {
  5. const shader = gl.createShader( type );
  6. gl.shaderSource( shader, string );
  7. gl.compileShader( shader );
  8. return shader;
  9. }
  10. export { WebGLShader };