@kitware/vtk.js
Version:
Visualization Toolkit for the Web
80 lines (66 loc) • 2.99 kB
JavaScript
import macro from '../../macros.js';
/* eslint-disable no-bitwise */
// ----------------------------------------------------------------------------
// vtkWebGPUSampler methods
// ----------------------------------------------------------------------------
function vtkWebGPUSampler(publicAPI, model) {
// Set our className
model.classHierarchy.push('vtkWebGPUSampler');
publicAPI.create = function (device) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
model.device = device;
model.options.addressModeU = options.addressModeU ? options.addressModeU : 'clamp-to-edge';
model.options.addressModeV = options.addressModeV ? options.addressModeV : 'clamp-to-edge';
model.options.addressModeW = options.addressModeW ? options.addressModeW : 'clamp-to-edge';
model.options.magFilter = options.magFilter ? options.magFilter : 'nearest';
model.options.minFilter = options.minFilter ? options.minFilter : 'nearest';
model.options.mipmapFilter = options.mipmapFilter ? options.mipmapFilter : 'nearest';
model.options.label = model.label;
model.handle = model.device.getHandle().createSampler(model.options);
model.bindGroupTime.modified();
};
publicAPI.getShaderCode = function (binding, group) {
var result = "@binding(".concat(binding, ") @group(").concat(group, ") var ").concat(model.label, ": sampler;");
return result;
};
publicAPI.getBindGroupEntry = function () {
var foo = {
resource: model.handle
};
return foo;
};
} // ----------------------------------------------------------------------------
// Object factory
// ----------------------------------------------------------------------------
var DEFAULT_VALUES = {
device: null,
handle: null,
label: null,
options: null
}; // ----------------------------------------------------------------------------
function extend(publicAPI, model) {
var initialValues = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
Object.assign(model, DEFAULT_VALUES, initialValues); // Object methods
macro.obj(publicAPI, model);
model.options = {};
model.bindGroupLayoutEntry = {
/* eslint-disable no-undef */
visibility: GPUShaderStage.VERTEX | GPUShaderStage.FRAGMENT,
/* eslint-enable no-undef */
sampler: {// type: 'filtering',
}
};
model.bindGroupTime = {};
macro.obj(model.bindGroupTime, {
mtime: 0
});
macro.get(publicAPI, model, ['bindGroupTime', 'handle', 'options']);
macro.setGet(publicAPI, model, ['bindGroupLayoutEntry', 'device', 'label']);
vtkWebGPUSampler(publicAPI, model);
} // ----------------------------------------------------------------------------
var newInstance = macro.newInstance(extend); // ----------------------------------------------------------------------------
var vtkWebGPUSampler$1 = {
newInstance: newInstance,
extend: extend
};
export { vtkWebGPUSampler$1 as default, extend, newInstance };