Home
last modified time | relevance | path

Searched refs:pic (Results 1 – 25 of 108) sorted by relevance

12345

/external/quake/quake/src/WinQuake/
Ddraw.cpp66 cachepic_t *pic; in Draw_CachePic() local
70 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++) in Draw_CachePic()
71 if (!strcmp (path, pic->name)) in Draw_CachePic()
79 strcpy (pic->name, path); in Draw_CachePic()
82 dat = Cache_Check (&pic->cache); in Draw_CachePic()
90 COM_LoadCacheFile (path, &pic->cache); in Draw_CachePic()
92 dat = (qpic_t *)pic->cache.data; in Draw_CachePic()
289 void Draw_Pic (int x, int y, qpic_t *pic) in Draw_Pic() argument
296 (x + pic->width > vid.width) || in Draw_Pic()
298 (y + pic->height > vid.height)) in Draw_Pic()
[all …]
Dgl_draw.cpp495 qpic_t pic; member
514 int GL_LoadPicTexture (qpic_t *pic) in GL_LoadPicTexture() argument
516 return GL_LoadTexture ("", pic->width, pic->height, pic->data, false, true); in GL_LoadPicTexture()
571 cachepic_t *pic; in Draw_CachePic() local
576 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++) in Draw_CachePic()
577 if (!strcmp (path, pic->name)) in Draw_CachePic()
578 return &pic->pic; in Draw_CachePic()
583 strcpy (pic->name, path); in Draw_CachePic()
599 pic->pic.width = dat->width; in Draw_CachePic()
600 pic->pic.height = dat->height; in Draw_CachePic()
[all …]
Dwad.cpp28 void SwapPic (qpic_t *pic);
154 void SwapPic (qpic_t *pic) in SwapPic() argument
156 pic->width = LittleLong(pic->width); in SwapPic()
157 pic->height = LittleLong(pic->height); in SwapPic()
Dsbar.cpp66 void M_DrawPic (int x, int y, qpic_t *pic);
260 void Sbar_DrawPic (int x, int y, qpic_t *pic) in Sbar_DrawPic() argument
263 Draw_Pic (x /* + ((vid.width - 320)>>1)*/, y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawPic()
265 Draw_Pic (x + ((vid.width - 320)>>1), y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawPic()
273 void Sbar_DrawTransPic (int x, int y, qpic_t *pic) in Sbar_DrawTransPic() argument
276 Draw_TransPic (x /*+ ((vid.width - 320)>>1)*/, y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawTransPic()
278 Draw_TransPic (x + ((vid.width - 320)>>1), y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawTransPic()
1092 qpic_t *pic; in Sbar_DeathmatchOverlay() local
1102 pic = Draw_CachePic ("gfx/ranking.lmp"); in Sbar_DeathmatchOverlay()
1103 M_DrawPic ((320-pic->width)/2, 8, pic); in Sbar_DeathmatchOverlay()
[all …]
Dgl_screen.cpp462 qpic_t *pic; in SCR_DrawPause() local
470 pic = Draw_CachePic ("gfx/pause.lmp"); in SCR_DrawPause()
471 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawPause()
472 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawPause()
484 qpic_t *pic; in SCR_DrawLoading() local
489 pic = Draw_CachePic ("gfx/loading.lmp"); in SCR_DrawLoading()
490 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawLoading()
491 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawLoading()
Dscreen.cpp404 qpic_t *pic; in SCR_DrawPause() local
412 pic = Draw_CachePic ("gfx/pause.lmp"); in SCR_DrawPause()
413 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawPause()
414 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawPause()
426 qpic_t *pic; in SCR_DrawLoading() local
431 pic = Draw_CachePic ("gfx/loading.lmp"); in SCR_DrawLoading()
432 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawLoading()
433 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawLoading()
Ddraw.h29 void Draw_Pic (int x, int y, qpic_t *pic);
30 void Draw_TransPic (int x, int y, qpic_t *pic);
31 void Draw_TransPicTranslate (int x, int y, qpic_t *pic, byte *translation);
/external/quake/quake/src/QW/client/
Ddraw.c66 cachepic_t *pic; in Draw_CachePic() local
70 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++) in Draw_CachePic()
71 if (!strcmp (path, pic->name)) in Draw_CachePic()
79 strcpy (pic->name, path); in Draw_CachePic()
82 dat = Cache_Check (&pic->cache); in Draw_CachePic()
90 COM_LoadCacheFile (path, &pic->cache); in Draw_CachePic()
92 dat = (qpic_t *)pic->cache.data; in Draw_CachePic()
344 void Draw_Pic (int x, int y, qpic_t *pic) in Draw_Pic() argument
351 (x + pic->width > vid.width) || in Draw_Pic()
353 (y + pic->height > vid.height)) in Draw_Pic()
[all …]
Dgl_draw.c177 qpic_t pic; member
240 cachepic_t *pic; in Draw_CachePic() local
245 for (pic=menu_cachepics, i=0 ; i<menu_numcachepics ; pic++, i++) in Draw_CachePic()
246 if (!strcmp (path, pic->name)) in Draw_CachePic()
247 return &pic->pic; in Draw_CachePic()
252 strcpy (pic->name, path); in Draw_CachePic()
268 pic->pic.width = dat->width; in Draw_CachePic()
269 pic->pic.height = dat->height; in Draw_CachePic()
271 gl = (glpic_t *)pic->pic.data; in Draw_CachePic()
278 return &pic->pic; in Draw_CachePic()
[all …]
Dwad.c28 void SwapPic (qpic_t *pic);
154 void SwapPic (qpic_t *pic) in SwapPic() argument
156 pic->width = LittleLong(pic->width); in SwapPic()
157 pic->height = LittleLong(pic->height); in SwapPic()
Ddraw.h29 void Draw_SubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height);
30 void Draw_Pic (int x, int y, qpic_t *pic);
31 void Draw_TransPic (int x, int y, qpic_t *pic);
32 void Draw_TransPicTranslate (int x, int y, qpic_t *pic, byte *translation);
Dsbar.c232 void Sbar_DrawPic (int x, int y, qpic_t *pic) in Sbar_DrawPic() argument
234 Draw_Pic (x /* + ((vid.width - 320)>>1) */, y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawPic()
244 void Sbar_DrawSubPic(int x, int y, qpic_t *pic, int srcx, int srcy, int width, int height) in Sbar_DrawSubPic() argument
246 Draw_SubPic (x, y+(vid.height-SBAR_HEIGHT), pic, srcx, srcy, width, height); in Sbar_DrawSubPic()
255 void Sbar_DrawTransPic (int x, int y, qpic_t *pic) in Sbar_DrawTransPic() argument
257 Draw_TransPic (x /*+ ((vid.width - 320)>>1) */, y + (vid.height-SBAR_HEIGHT), pic); in Sbar_DrawTransPic()
900 qpic_t *pic; in Sbar_TeamOverlay() local
920 pic = Draw_CachePic ("gfx/ranking.lmp"); in Sbar_TeamOverlay()
921 Draw_Pic (160-pic->width/2, 0, pic); in Sbar_TeamOverlay()
993 qpic_t *pic; in Sbar_DeathmatchOverlay() local
[all …]
Dgl_screen.c497 qpic_t *pic; in SCR_DrawPause() local
505 pic = Draw_CachePic ("gfx/pause.lmp"); in SCR_DrawPause()
506 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawPause()
507 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawPause()
519 qpic_t *pic; in SCR_DrawLoading() local
524 pic = Draw_CachePic ("gfx/loading.lmp"); in SCR_DrawLoading()
525 Draw_Pic ( (vid.width - pic->width)/2, in SCR_DrawLoading()
526 (vid.height - 48 - pic->height)/2, pic); in SCR_DrawLoading()
/external/libpng/scripts/
Dmakefile.os256 png.o png.pic.o: png.h pngconf.h
57 pngerror.o pngerror.pic.o: png.h pngconf.h
58 pngrio.o pngrio.pic.o: png.h pngconf.h
59 pngwio.o pngwio.pic.o: png.h pngconf.h
60 pngmem.o pngmem.pic.o: png.h pngconf.h
61 pngset.o pngset.pic.o: png.h pngconf.h
62 pngget.o pngget.pic.o: png.h pngconf.h
63 pngread.o pngread.pic.o: png.h pngconf.h
64 pngrtran.o pngrtran.pic.o: png.h pngconf.h
65 pngrutil.o pngrutil.pic.o: png.h pngconf.h
[all …]
Dmakefile.cygwin117 OBJSDLL = $(OBJS:.o=.pic.o)
119 .SUFFIXES: .c .o .pic.o
123 %.pic.o : CFLAGS += -DPNG_BUILD_DLL
124 %.pic.o : %.c
Dmakefile.mingw117 OBJSDLL = $(OBJS:.o=.pic.o)
119 .SUFFIXES: .c .o .pic.o
123 %.pic.o : CFLAGS += -DPNG_BUILD_DLL
124 %.pic.o : %.c
Dmakefile.darwin72 OBJSDLL = $(OBJS:.o=.pic.o)
74 .SUFFIXES: .c .o .pic.o
76 .c.pic.o:
Dmakefile.sco71 OBJSDLL = $(OBJS:.o=.pic.o)
73 .SUFFIXES: .c .o .pic.o
75 .c.pic.o:
/external/libpng/contrib/gregbook/
DMakefile.mingw3267 ROBJSd = $(RPNG)$(O) readpng.pic$(O)
68 ROBJS2d = $(RPNG2)$(O) readpng2.pic$(O)
69 WOBJSd = $(WPNG)$(O) writepng.pic$(O)
90 %.pic$(O): %.c
120 readpng$(O) readpng.pic$(O): readpng.c readpng.h
121 readpng2$(O) readpng2.pic$(O): readpng2.c readpng2.h
122 writepng$(O) writepng.pic$(O): writepng.c writepng.h
/external/qemu/hw/
Daudiodev.h5 int SB16_init(qemu_irq *pic);
8 int Adlib_init(qemu_irq *pic);
11 int GUS_init(qemu_irq *pic);
17 int cs4231a_init(qemu_irq *pic);
Dpci.h180 typedef void (*pci_set_irq_fn)(qemu_irq *pic, int irq_num, int level);
184 qemu_irq *pic, int devfn_min, int nirq);
240 PCIBus *pci_prep_init(qemu_irq *pic);
245 qemu_irq *pic, PCIBus **bus2, PCIBus **bus3);
249 qemu_irq *pic, int devfn_min, int nirq);
/external/e2fsprogs/lib/
DMakefile.bsd-lib17 @mkdir -p pic
25 (cd pic; ld -Bshareable -o $(BSD_LIB) $(OBJS))
26 $(MV) pic/$(BSD_LIB) .
44 $(RM) -rf pic
DMakefile.darwin-lib17 @mkdir -p pic
26 @(cd pic; $(CC) -dynamiclib -compatibility_version 1.0 -current_version $(BSDLIB_VERSION) \
28 @$(MV) pic/$(BSD_LIB) .
47 $(RM) -rf pic
/external/protobuf/m4/
Dltoptions.m481 _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
323 # implement the --with-pic flag, and support the `pic-only' and `no-pic'
327 [AC_ARG_WITH([pic], optwith
328 [AS_HELP_STRING([--with-pic],
338 LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
339 LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
343 [_LT_SET_OPTION([LT_INIT], [pic-only])
346 put the `pic-only' option into LT_INIT's first parameter.])
/external/libpcap/
Dpcap1.h127 struct pcap1_info_container pic; member
135 struct pcap1_info_container pic; member
152 struct pcap1_info_container pic; member
158 struct pcap1_info_container pic; member

12345