Advance Blender 5.2 web parity through M12-03D
Some checks failed
M6 deployable RC / quick (push) Has been cancelled
M6 deployable RC / chromium (push) Has been cancelled
M6 deployable RC / release (push) Has been cancelled

This commit is contained in:
mes123456
2026-08-17 17:30:27 -04:00
parent 0fe8d2bb56
commit 5a11045ca5
148 changed files with 11683 additions and 66 deletions

View File

@@ -160,6 +160,13 @@ export class CompositorFrameCache {
this.entries.set(key, { result: clone, byteLength });
this.currentBytes += byteLength;
}
clear(): number {
const releasedBytes = this.currentBytes;
this.entries.clear();
this.currentBytes = 0;
return releasedBytes;
}
}
export class CompositorValidationError extends Error {