gpu.js
Version:
GPU Accelerated JavaScript
28 lines (24 loc) • 697 B
JavaScript
const { utils } = require('../../../utils');
const { WebGLKernelValue } = require('./index');
class WebGLKernelValueBoolean extends WebGLKernelValue {
constructor(value, settings) {
super(value, settings);
this.uploadValue = value;
}
getSource(value) {
if (this.origin === 'constants') {
return `const bool ${this.id} = ${value};\n`;
}
return `uniform bool ${this.id};\n`;
}
getStringValueHandler() {
return `const uploadValue_${this.name} = ${this.varName};\n`;
}
updateValue(value) {
if (this.origin === 'constants') return;
this.kernel.setUniform1i(this.id, this.uploadValue = value);
}
}
module.exports = {
WebGLKernelValueBoolean
};