@luma.gl/gltf 9.0.0-beta.2 → 9.0.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/dist.dev.js CHANGED
@@ -1051,12 +1051,15 @@ var __exports__ = (() => {
1051
1051
  readPixelsToArrayWebGL(source, options) {
1052
1052
  throw new Error("not implemented");
1053
1053
  }
1054
- readPixelsToBufferWebGL2(source, options) {
1054
+ readPixelsToBufferWebGL(source, options) {
1055
1055
  throw new Error("not implemented");
1056
1056
  }
1057
1057
  setParametersWebGL(parameters) {
1058
1058
  throw new Error("not implemented");
1059
1059
  }
1060
+ getParametersWebGL(parameters) {
1061
+ throw new Error("not implemented");
1062
+ }
1060
1063
  withParametersWebGL(parameters, func) {
1061
1064
  throw new Error("not implemented");
1062
1065
  }
@@ -18231,12 +18234,15 @@ ${source2}`;
18231
18234
  readPixelsToArrayWebGL(source, options) {
18232
18235
  return readPixelsToArray(source, options);
18233
18236
  }
18234
- readPixelsToBufferWebGL2(source, options) {
18237
+ readPixelsToBufferWebGL(source, options) {
18235
18238
  return readPixelsToBuffer(source, options);
18236
18239
  }
18237
18240
  setParametersWebGL(parameters) {
18238
18241
  setGLParameters(this, parameters);
18239
18242
  }
18243
+ getParametersWebGL(parameters) {
18244
+ return getGLParameters(this, parameters);
18245
+ }
18240
18246
  withParametersWebGL(parameters, func) {
18241
18247
  withGLParameters(this, parameters, func);
18242
18248
  }