Robert Plummer c7df01e66f fix: #514 fix and upgrade tests to detect behaviour
fix: Documentation for what types are and are not tracked
fix: Added documentation for testing and building
fix: Some destructuring
2019-10-08 10:29:54 -04:00

57 lines
1.6 KiB
JavaScript

const { assert, skip, test, module: describe, only } = require('qunit');
const { GPU, input } = require('../../../../../../src');
describe('feature: to-string unsigned precision constants Input');
function testConstant(mode, context, canvas) {
const gpu = new GPU({ mode });
const a = input([1,2,3,4],[2,2]);
const originalKernel = gpu.createKernel(function() {
let sum = 0;
for (let y = 0; y < 2; y++) {
for (let x = 0; x < 2; x++) {
sum += this.constants.a[y][x];
}
}
return sum;
}, {
canvas,
context,
output: [1],
precision: 'unsigned',
constants: {
a
}
});
assert.deepEqual(originalKernel()[0], 10);
const kernelString = originalKernel.toString();
const Kernel = new Function('return ' + kernelString)();
const newKernel = Kernel({ context, constants: { a } });
assert.deepEqual(newKernel()[0], 10);
const b = input([1,1,1,1],[2,2]);
const newKernel2 = Kernel({ context, constants: { a: b } });
assert.deepEqual(newKernel2()[0], 4);
gpu.destroy();
}
(GPU.isWebGLSupported ? test : skip)('webgl', () => {
const canvas = document.createElement('canvas');
const context = canvas.getContext('webgl');
testConstant('webgl', context, canvas);
});
(GPU.isWebGL2Supported ? test : skip)('webgl2', () => {
const canvas = document.createElement('canvas');
const context = canvas.getContext('webgl2');
testConstant('webgl2', context, canvas);
});
(GPU.isHeadlessGLSupported ? test : skip)('headlessgl', () => {
testConstant('headlessgl', require('gl')(1, 1), null);
});
test('cpu', () => {
testConstant('cpu');
});