Bug 1195653 - Part1.3: Add isMask attribute field to LayerScopePacket.proto. r=dglastonbury (v2, carry r+)

This commit is contained in:
Jeremy Chen 2015-09-29 23:23:00 +02:00
parent 16750fede1
commit 9387f36033

View File

@ -20,6 +20,7 @@ message ColorPacket {
}
message TexturePacket {
// Basic info
required uint64 layerref = 1;
optional uint32 width = 2;
optional uint32 height = 3;
@ -29,6 +30,13 @@ message TexturePacket {
optional uint32 dataformat = 7;
optional uint64 glcontext = 8;
optional bytes data = 9;
// Texture effect attributes (10 to 19)
// TODO: reserved for primary textured effect attributes, see Bug 1205521
// Mask effect attributes (20 to 29)
optional bool isMask = 20;
// TODO: reserved for secondary mask effect attributes, see Bug 1205521
}
message LayersPacket {