Bug 1364922 - Add a new op OpAddExternalVideoImage for multiple-channel video image. r=nical

MozReview-Commit-ID: 3GV4qBfelr5
This commit is contained in:
JerryShih 2017-05-19 00:25:41 +08:00
Родитель 08a36ea3d9
Коммит e93a22a8d3
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -31,6 +31,11 @@ struct OpAddExternalImage {
ImageKey key;
};
struct OpAddExternalVideoImage {
ExternalImageId externalImageId;
ImageKey[] keys;
};
struct OpAddCompositorAnimations {
CompositorAnimations data;
OptionalTransform transform;
@ -39,6 +44,7 @@ struct OpAddCompositorAnimations {
union WebRenderParentCommand {
OpAddExternalImage;
OpAddExternalVideoImage;
CompositableOperation;
OpAddCompositorAnimations;
};