Lines Matching refs:fp
92 static void GIFEncode (gdIOCtxPtr fp, int GWidth, int GHeight, int GInterlace, int Background, int …
257 GIFEncode(gdIOCtxPtr fp, int GWidth, int GHeight, int GInterlace, int Background, int Transparent, … in GIFEncode() argument
306 gdPutBuf(Transparent < 0 ? "GIF87a" : "GIF89a", 6, fp ); in GIFEncode()
311 gifPutWord( RWidth, fp ); in GIFEncode()
312 gifPutWord( RHeight, fp ); in GIFEncode()
332 gdPutC( B, fp ); in GIFEncode()
337 gdPutC( Background, fp ); in GIFEncode()
342 gdPutC( 0, fp ); in GIFEncode()
348 gdPutC( Red[i], fp ); in GIFEncode()
349 gdPutC( Green[i], fp ); in GIFEncode()
350 gdPutC( Blue[i], fp ); in GIFEncode()
357 gdPutC( '!', fp ); in GIFEncode()
358 gdPutC( 0xf9, fp ); in GIFEncode()
359 gdPutC( 4, fp ); in GIFEncode()
360 gdPutC( 1, fp ); in GIFEncode()
361 gdPutC( 0, fp ); in GIFEncode()
362 gdPutC( 0, fp ); in GIFEncode()
363 gdPutC( (unsigned char) Transparent, fp ); in GIFEncode()
364 gdPutC( 0, fp ); in GIFEncode()
370 gdPutC( ',', fp ); in GIFEncode()
376 gifPutWord( LeftOfs, fp ); in GIFEncode()
377 gifPutWord( TopOfs, fp ); in GIFEncode()
378 gifPutWord( ctx.Width, fp ); in GIFEncode()
379 gifPutWord( ctx.Height, fp ); in GIFEncode()
385 gdPutC( 0x40, fp ); in GIFEncode()
387 gdPutC( 0x00, fp ); in GIFEncode()
392 gdPutC( InitCodeSize, fp ); in GIFEncode()
397 compress( InitCodeSize+1, fp, im, &ctx ); in GIFEncode()
402 gdPutC( 0, fp ); in GIFEncode()
407 gdPutC( ';', fp ); in GIFEncode()