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