Home | History | Annotate | Download | only in images

Lines Matching refs:eb

226         ExtensionBlock* eb = frame->ExtensionBlocks + i;
227 if (eb->Function == GRAPHICS_EXT_FUNC_CODE &&
228 eb->ByteCount == 4) {
229 bool has_transparency = ((eb->Bytes[0] & 1) == 1);
231 transparent = (unsigned char)eb->Bytes[3];
260 ExtensionBlock* eb = frame->ExtensionBlocks + i;
261 if (eb->Function == GRAPHICS_EXT_FUNC_CODE &&
262 eb->ByteCount == 4) {
264 int disposal = ((eb->Bytes[0] >> 2) & 7);
278 ExtensionBlock* eb = frame->ExtensionBlocks + i;
279 if (eb->Function == GRAPHICS_EXT_FUNC_CODE &&
280 eb->ByteCount == 4) {
281 *trans = ((eb->Bytes[0] & 1) == 1);
282 *disposal = ((eb->Bytes[0] >> 2) & 7);