Home | History | Annotate | Download | only in images

Lines Matching refs:eb

224         ExtensionBlock* eb = frame->ExtensionBlocks + i;
225 if (eb->Function == GRAPHICS_EXT_FUNC_CODE &&
226 eb->ByteCount == 4) {
227 bool has_transparency = ((eb->Bytes[0] & 1) == 1);
229 transparent = (unsigned char)eb->Bytes[3];
254 ExtensionBlock* eb = frame->ExtensionBlocks + i;
255 if (eb->Function == GRAPHICS_EXT_FUNC_CODE &&
256 eb->ByteCount == 4) {
258 int disposal = ((eb->Bytes[0] >> 2) & 7);
272 ExtensionBlock* eb = frame->ExtensionBlocks + i;
273 if (eb->Function == GRAPHICS_EXT_FUNC_CODE &&
274 eb->ByteCount == 4) {
275 *trans = ((eb->Bytes[0] & 1) == 1);
276 *disposal = ((eb->Bytes[0] >> 2) & 7);