@omnimedia/omnitool
Version:
open source video processing tools
27 lines • 754 B
JavaScript
export const uniforms = {
custom: (transition) => Object.fromEntries(Object.entries(transition.defaultParams).map(([name, value]) => [
name,
{
value,
type: getUniformType(transition.paramsTypes[name])
}
])),
basics: {
_fromR: { value: 1, type: "f32" },
_toR: { value: 1, type: "f32" },
ratio: { value: 1, type: "f32" },
progress: { value: 0, type: "f32" },
customUniform: { value: 0, type: "f32" },
}
};
const getUniformType = (type) => {
if (type === "f32" || type === "i32") {
return type;
}
else if (type === "float") {
return "f32";
}
else
return `${type}<f32>`;
};
//# sourceMappingURL=uniforms.js.map