mirror of
https://github.com/jiawanlong/Cesium-Examples.git
synced 2025-07-06 16:31:03 +00:00
18 lines
261 B
JavaScript
18 lines
261 B
JavaScript
import Pipeline from './Pipeline.js';
|
|
|
|
class ComputePipeline extends Pipeline {
|
|
|
|
constructor( cacheKey, computeProgram ) {
|
|
|
|
super( cacheKey );
|
|
|
|
this.computeProgram = computeProgram;
|
|
|
|
this.isComputePipeline = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default ComputePipeline;
|