Spaces:
Sleeping
Sleeping
File size: 424 Bytes
9a14526 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | // @flow
import {createLayout} from '../../util/struct_array';
const patternAttributes = createLayout([
// [tl.x, tl.y, br.x, br.y]
{name: 'a_pattern_from', components: 4, type: 'Uint16'},
{name: 'a_pattern_to', components: 4, type: 'Uint16'},
{name: 'a_pixel_ratio_from', components: 1, type: 'Uint16'},
{name: 'a_pixel_ratio_to', components: 1, type: 'Uint16'},
]);
export default patternAttributes;
|