@predy-js/render-interface 0.3.0-beta.247 → 0.3.0-beta.249

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/statistic.js CHANGED
@@ -2,7 +2,7 @@
2
2
  * Name: @predy-js/render-interface
3
3
  * Description: undefined
4
4
  * Author: undefined
5
- * Version: v0.3.0-beta.247
5
+ * Version: v0.3.0-beta.249
6
6
  */
7
7
 
8
8
  // https://github.com/greggman/webgl-memory/blob/main/src/texture-utils.js
@@ -189,6 +189,7 @@ export interface TextureConfigOptionsBase {
189
189
  }
190
190
  export interface TextureConfigOptions extends TextureConfigOptionsBase {
191
191
  sourceFrom?: TextureFactorySourceFrom;
192
+ premultiplyAlpha?: boolean;
192
193
  }
193
194
  export interface TextureFormatOptions {
194
195
  format?: GLenum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@predy-js/render-interface",
3
- "version": "0.3.0-beta.247",
3
+ "version": "0.3.0-beta.249",
4
4
  "license": "MIT",
5
5
  "module": "./dist/index.mjs",
6
6
  "main": "./dist/index.js",
package/types/Texture.ts CHANGED
@@ -228,6 +228,7 @@ export interface TextureConfigOptionsBase {
228
228
 
229
229
  export interface TextureConfigOptions extends TextureConfigOptionsBase {
230
230
  sourceFrom?: TextureFactorySourceFrom,
231
+ premultiplyAlpha?: boolean,
231
232
  }
232
233
 
233
234
  export interface TextureFormatOptions {