@predy-js/render-interface 0.1.76-beta.5 → 0.1.76-beta.7
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/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/dist/src/render/MarsRenderer.d.ts +1 -0
- package/dist/statistic.js +1 -1
- package/dist/types/Renderer.d.ts +4 -0
- package/package.json +1 -1
- package/types/Renderer.ts +5 -0
package/dist/statistic.js
CHANGED
package/dist/types/Renderer.d.ts
CHANGED
@@ -59,4 +59,8 @@ export declare class GPURenderer implements IGPURenderer {
|
|
59
59
|
* @param haltGL if true, this method will call webgl lose context extension which leads webgl absolutely halt
|
60
60
|
*/
|
61
61
|
destroy(haltGL?: boolean): void;
|
62
|
+
/**
|
63
|
+
* 此帧需要进行绘制
|
64
|
+
*/
|
65
|
+
invalid(): void;
|
62
66
|
}
|
package/package.json
CHANGED