| Server IP : 137.184.226.51 / Your IP : 10.8.0.1 Web Server : Apache/2.4.41 (Ubuntu) System : Linux vm8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : ( 1000) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/aspa/three/renderers/webgl/ |
Upload File : |
let _id = 0;
class WebGLShaderCache {
constructor() {
this.shaderCache = new Map();
this.materialCache = new Map();
}
update( material ) {
const vertexShader = material.vertexShader;
const fragmentShader = material.fragmentShader;
const vertexShaderStage = this._getShaderStage( vertexShader );
const fragmentShaderStage = this._getShaderStage( fragmentShader );
const materialShaders = this._getShaderCacheForMaterial( material );
if ( materialShaders.has( vertexShaderStage ) === false ) {
materialShaders.add( vertexShaderStage );
vertexShaderStage.usedTimes ++;
}
if ( materialShaders.has( fragmentShaderStage ) === false ) {
materialShaders.add( fragmentShaderStage );
fragmentShaderStage.usedTimes ++;
}
return this;
}
remove( material ) {
const materialShaders = this.materialCache.get( material );
for ( const shaderStage of materialShaders ) {
shaderStage.usedTimes --;
if ( shaderStage.usedTimes === 0 ) this.shaderCache.delete( shaderStage.code );
}
this.materialCache.delete( material );
return this;
}
getVertexShaderID( material ) {
return this._getShaderStage( material.vertexShader ).id;
}
getFragmentShaderID( material ) {
return this._getShaderStage( material.fragmentShader ).id;
}
dispose() {
this.shaderCache.clear();
this.materialCache.clear();
}
_getShaderCacheForMaterial( material ) {
const cache = this.materialCache;
let set = cache.get( material );
if ( set === undefined ) {
set = new Set();
cache.set( material, set );
}
return set;
}
_getShaderStage( code ) {
const cache = this.shaderCache;
let stage = cache.get( code );
if ( stage === undefined ) {
stage = new WebGLShaderStage( code );
cache.set( code, stage );
}
return stage;
}
}
class WebGLShaderStage {
constructor( code ) {
this.id = _id ++;
this.code = code;
this.usedTimes = 0;
}
}
export { WebGLShaderCache };