Include Raster.context accessor

This commit is contained in:
Jürg Lehni 2019-04-11 19:37:26 +02:00
parent 6fc1b122d6
commit fcfebdc43b

View file

@ -18,6 +18,7 @@
* @extends Item * @extends Item
*/ */
var Raster = Item.extend(/** @lends Raster# */{ var Raster = Item.extend(/** @lends Raster# */{
}, /** @lends Raster# */{
_class: 'Raster', _class: 'Raster',
_applyMatrix: false, _applyMatrix: false,
_canApplyMatrix: false, _canApplyMatrix: false,
@ -31,6 +32,9 @@ var Raster = Item.extend(/** @lends Raster# */{
// Prioritize `crossOrigin` over `source`: // Prioritize `crossOrigin` over `source`:
_prioritize: ['crossOrigin'], _prioritize: ['crossOrigin'],
_smoothing: true, _smoothing: true,
// Enforce creation of beans, as bean getters have hidden parameters.
// See #getContext(modify) below.
beans: true,
// TODO: Implement type, width, height. // TODO: Implement type, width, height.
// TODO: Have SymbolItem & Raster inherit from a shared class? // TODO: Have SymbolItem & Raster inherit from a shared class?