24 lines
620 B
JavaScript
24 lines
620 B
JavaScript
const ProgramCache = {}, TextureCache = /* @__PURE__ */ Object.create(null), BaseTextureCache = /* @__PURE__ */ Object.create(null);
|
|
function destroyTextureCache() {
|
|
let key;
|
|
for (key in TextureCache)
|
|
TextureCache[key].destroy();
|
|
for (key in BaseTextureCache)
|
|
BaseTextureCache[key].destroy();
|
|
}
|
|
function clearTextureCache() {
|
|
let key;
|
|
for (key in TextureCache)
|
|
delete TextureCache[key];
|
|
for (key in BaseTextureCache)
|
|
delete BaseTextureCache[key];
|
|
}
|
|
export {
|
|
BaseTextureCache,
|
|
ProgramCache,
|
|
TextureCache,
|
|
clearTextureCache,
|
|
destroyTextureCache
|
|
};
|
|
//# sourceMappingURL=caches.mjs.map
|