Home
last modified time | relevance | path

Searched refs:textIdxs (Results 1 – 1 of 1) sorted by relevance

/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/graphics/
DXTexture.js30 this.textIdxs = {};
217 if (textIdx in this.textIdxs) {
218 this.textIdxs[textIdx].time = this.timenow();
219 return this.textIdxs[textIdx].cid;
248 this.textIdxs[textIdx] = { cid: cid, rid: rid, mask: mask << off, time: this.timenow(), }; property
259 for (let idx in this.textIdxs) {
260 if (nt - this.textIdxs[idx].time > 3) {
261 this.textImgs[this.textIdxs[idx].rid].mask &= ~this.textIdxs[idx].mask;
262 delete this.allCuts[this.textIdxs[idx].cid];
267 delete this.textIdxs[rm[idx]];