glShaderSource method
Implementation
void glShaderSource(
int shader,
int count,
ffi.Pointer<ffi.Pointer<ffi.Int8>> string,
ffi.Pointer<ffi.Int32> length,
) {
return (_glShaderSource ??=
_dylib.lookupFunction<_c_glShaderSource, _dart_glShaderSource>(
'glShaderSource'))(
shader,
count,
string,
length,
);
}