Home
last modified time | relevance | path

Searched refs:newpix (Results 1 – 25 of 93) sorted by relevance

1234

/dports/x11-toolkits/vdk/vdk-2.5.1/src/
H A Dpixmaps.cc182 VDKPixmap::SetPixmap(VDKRawPixmap* newpix) in SetPixmap() argument
185 if(oldRawPix == newpix) in SetPixmap()
196 pixmap = *newpix; in SetPixmap()
199 newpix->Mask()); in SetPixmap()
204 pixmap = *newpix; in SetPixmap()
205 pixmapWid = gtk_pixmap_new(pixmap,newpix->Mask()); in SetPixmap()
206 gtk_widget_set_size_request(widget,newpix->Width(),newpix->Height()); in SetPixmap()
210 oldRawPix = newpix; in SetPixmap()
H A Dimage.cc261 VDKImage::SetImage(VDKPixbuf* newpix) in SetImage() argument
264 if(oldRawPix == newpix) in SetImage()
275 pixmap = newpix; in SetImage()
278 gtk_widget_set_size_request(widget,newpix->Width()-1,newpix->Height()-1); in SetImage()
283 pixmap = newpix; in SetImage()
285 gtk_widget_set_size_request(widget,newpix->Width()-1,newpix->Height()-1); in SetImage()
290 oldRawPix = newpix; in SetImage()
/dports/graphics/urt/urt-3.1b1_12/tools/
H A Drlenoise.c42 double rand_mult, newpix; local
110 newpix = inrows[i][x] + random() * rand_mult -
112 if ( newpix < 0 )
113 newpix = 0;
114 if ( newpix > 255 )
115 newpix = 255;
116 inrows[i][x] = newpix;
/dports/emulators/fs-uae/fs-uae-3.1.35/src/mame/tm34010/
H A Dtms34010.cpp437 UINT32 tms340x0_device::raster_op_1(UINT32 newpix, UINT32 oldpix) { return newpix & oldpix; } in raster_op_1() argument
438 UINT32 tms340x0_device::raster_op_2(UINT32 newpix, UINT32 oldpix) { return newpix & ~oldpix; } in raster_op_2() argument
444 UINT32 tms340x0_device::raster_op_8(UINT32 newpix, UINT32 oldpix) { return newpix | oldpix; } in raster_op_8() argument
446 UINT32 tms340x0_device::raster_op_10(UINT32 newpix, UINT32 oldpix) { return newpix ^ oldpix; } in raster_op_10() argument
451 UINT32 tms340x0_device::raster_op_15(UINT32 newpix, UINT32 oldpix) { return ~newpix; } in raster_op_15() argument
452 UINT32 tms340x0_device::raster_op_16(UINT32 newpix, UINT32 oldpix) { return newpix + oldpix; } in raster_op_16() argument
456 UINT32 res = newpix + oldpix; in raster_op_17()
459 UINT32 tms340x0_device::raster_op_18(UINT32 newpix, UINT32 oldpix) { return oldpix - newpix; } in raster_op_18() argument
460 …INT32 tms340x0_device::raster_op_19(UINT32 newpix, UINT32 oldpix) { return (oldpix > newpix) ? old… in raster_op_19() argument
461 …INT32 tms340x0_device::raster_op_20(UINT32 newpix, UINT32 oldpix) { return (oldpix > newpix) ? old… in raster_op_20() argument
[all …]
H A Dtms34010.h429 UINT32 raster_op_1(UINT32 newpix, UINT32 oldpix);
430 UINT32 raster_op_2(UINT32 newpix, UINT32 oldpix);
431 UINT32 raster_op_3(UINT32 newpix, UINT32 oldpix);
432 UINT32 raster_op_4(UINT32 newpix, UINT32 oldpix);
433 UINT32 raster_op_5(UINT32 newpix, UINT32 oldpix);
434 UINT32 raster_op_6(UINT32 newpix, UINT32 oldpix);
435 UINT32 raster_op_7(UINT32 newpix, UINT32 oldpix);
436 UINT32 raster_op_8(UINT32 newpix, UINT32 oldpix);
437 UINT32 raster_op_9(UINT32 newpix, UINT32 oldpix);
438 UINT32 raster_op_10(UINT32 newpix, UINT32 oldpix);
[all …]
/dports/games/libretro-mame2000/mame2000-libretro-e364a15/src/cpu/tms34010/
H A Dtms34010.c765 static INT32 raster_op_1(INT32 newpix, INT32 oldpix) { return newpix & oldpix; } in raster_op_1() argument
766 static INT32 raster_op_2(INT32 newpix, INT32 oldpix) { return newpix & ~oldpix; } in raster_op_2() argument
768 static INT32 raster_op_4(INT32 newpix, INT32 oldpix) { return newpix | ~oldpix; } in raster_op_4() argument
772 static INT32 raster_op_8(INT32 newpix, INT32 oldpix) { return newpix | oldpix; } in raster_op_8() argument
774 static INT32 raster_op_10(INT32 newpix, INT32 oldpix) { return newpix ^ oldpix; } in raster_op_10() argument
779 static INT32 raster_op_15(INT32 newpix, INT32 oldpix) { return ~newpix; } in raster_op_15() argument
780 static INT32 raster_op_16(INT32 newpix, INT32 oldpix) { return newpix + oldpix; } in raster_op_16() argument
787 static INT32 raster_op_18(INT32 newpix, INT32 oldpix) { return oldpix - newpix; } in raster_op_18() argument
788 static INT32 raster_op_19(INT32 newpix, INT32 oldpix) { return (oldpix > newpix) ? oldpix - newpix in raster_op_19() argument
789 static INT32 raster_op_20(INT32 newpix, INT32 oldpix) { return (oldpix > newpix) ? oldpix : newpix;… in raster_op_20() argument
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/cpu/tms34010/
H A Dtms34010.cpp569 uint32_t tms340x0_device::raster_op_1(uint32_t newpix, uint32_t oldpix) { return newpix & oldpix; } in raster_op_1() argument
570 uint32_t tms340x0_device::raster_op_2(uint32_t newpix, uint32_t oldpix) { return newpix & ~oldpix;… in raster_op_2() argument
576 uint32_t tms340x0_device::raster_op_8(uint32_t newpix, uint32_t oldpix) { return newpix | oldpix; } in raster_op_8() argument
578 uint32_t tms340x0_device::raster_op_10(uint32_t newpix, uint32_t oldpix) { return newpix ^ oldpix; } in raster_op_10() argument
583 uint32_t tms340x0_device::raster_op_15(uint32_t newpix, uint32_t oldpix) { return ~newpix; } in raster_op_15() argument
584 uint32_t tms340x0_device::raster_op_16(uint32_t newpix, uint32_t oldpix) { return newpix + oldpix; } in raster_op_16() argument
588 uint32_t res = newpix + oldpix; in raster_op_17()
591 uint32_t tms340x0_device::raster_op_18(uint32_t newpix, uint32_t oldpix) { return oldpix - newpix; } in raster_op_18() argument
592 …_t tms340x0_device::raster_op_19(uint32_t newpix, uint32_t oldpix) { return (oldpix > newpix) ? ol… in raster_op_19() argument
593 …_t tms340x0_device::raster_op_20(uint32_t newpix, uint32_t oldpix) { return (oldpix > newpix) ? ol… in raster_op_20() argument
[all …]
H A Dtms34010.h406 uint32_t raster_op_1(uint32_t newpix, uint32_t oldpix);
407 uint32_t raster_op_2(uint32_t newpix, uint32_t oldpix);
408 uint32_t raster_op_3(uint32_t newpix, uint32_t oldpix);
409 uint32_t raster_op_4(uint32_t newpix, uint32_t oldpix);
410 uint32_t raster_op_5(uint32_t newpix, uint32_t oldpix);
411 uint32_t raster_op_6(uint32_t newpix, uint32_t oldpix);
412 uint32_t raster_op_7(uint32_t newpix, uint32_t oldpix);
413 uint32_t raster_op_8(uint32_t newpix, uint32_t oldpix);
414 uint32_t raster_op_9(uint32_t newpix, uint32_t oldpix);
415 uint32_t raster_op_10(uint32_t newpix, uint32_t oldpix);
[all …]
/dports/emulators/mame/mame-mame0226/src/devices/cpu/tms34010/
H A Dtms34010.cpp569 uint32_t tms340x0_device::raster_op_1(uint32_t newpix, uint32_t oldpix) { return newpix & oldpix; } in raster_op_1() argument
570 uint32_t tms340x0_device::raster_op_2(uint32_t newpix, uint32_t oldpix) { return newpix & ~oldpix;… in raster_op_2() argument
576 uint32_t tms340x0_device::raster_op_8(uint32_t newpix, uint32_t oldpix) { return newpix | oldpix; } in raster_op_8() argument
578 uint32_t tms340x0_device::raster_op_10(uint32_t newpix, uint32_t oldpix) { return newpix ^ oldpix; } in raster_op_10() argument
583 uint32_t tms340x0_device::raster_op_15(uint32_t newpix, uint32_t oldpix) { return ~newpix; } in raster_op_15() argument
584 uint32_t tms340x0_device::raster_op_16(uint32_t newpix, uint32_t oldpix) { return newpix + oldpix; } in raster_op_16() argument
588 uint32_t res = newpix + oldpix; in raster_op_17()
591 uint32_t tms340x0_device::raster_op_18(uint32_t newpix, uint32_t oldpix) { return oldpix - newpix; } in raster_op_18() argument
592 …_t tms340x0_device::raster_op_19(uint32_t newpix, uint32_t oldpix) { return (oldpix > newpix) ? ol… in raster_op_19() argument
593 …_t tms340x0_device::raster_op_20(uint32_t newpix, uint32_t oldpix) { return (oldpix > newpix) ? ol… in raster_op_20() argument
[all …]
H A Dtms34010.h406 uint32_t raster_op_1(uint32_t newpix, uint32_t oldpix);
407 uint32_t raster_op_2(uint32_t newpix, uint32_t oldpix);
408 uint32_t raster_op_3(uint32_t newpix, uint32_t oldpix);
409 uint32_t raster_op_4(uint32_t newpix, uint32_t oldpix);
410 uint32_t raster_op_5(uint32_t newpix, uint32_t oldpix);
411 uint32_t raster_op_6(uint32_t newpix, uint32_t oldpix);
412 uint32_t raster_op_7(uint32_t newpix, uint32_t oldpix);
413 uint32_t raster_op_8(uint32_t newpix, uint32_t oldpix);
414 uint32_t raster_op_9(uint32_t newpix, uint32_t oldpix);
415 uint32_t raster_op_10(uint32_t newpix, uint32_t oldpix);
[all …]
/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/cpu/tms34/
H A Dtms34010.cpp504 static UINT32 raster_op_1(UINT32 newpix, UINT32 oldpix) { return newpix & oldpix; } in raster_op_1() argument
505 static UINT32 raster_op_2(UINT32 newpix, UINT32 oldpix) { return newpix & ~oldpix; } in raster_op_2() argument
507 static UINT32 raster_op_4(UINT32 newpix, UINT32 oldpix) { return newpix | ~oldpix; } in raster_op_4() argument
511 static UINT32 raster_op_8(UINT32 newpix, UINT32 oldpix) { return newpix | oldpix; } in raster_op_8() argument
513 static UINT32 raster_op_10(UINT32 newpix, UINT32 oldpix) { return newpix ^ oldpix; } in raster_op_10() argument
518 static UINT32 raster_op_15(UINT32 newpix, UINT32 oldpix) { return ~newpix; } in raster_op_15() argument
519 static UINT32 raster_op_16(UINT32 newpix, UINT32 oldpix) { return newpix + oldpix; } in raster_op_16() argument
526 static UINT32 raster_op_18(UINT32 newpix, UINT32 oldpix) { return oldpix - newpix; } in raster_op_18() argument
527 static UINT32 raster_op_19(UINT32 newpix, UINT32 oldpix) { return (oldpix > newpix) ? oldpix - newp… in raster_op_19() argument
528 static UINT32 raster_op_20(UINT32 newpix, UINT32 oldpix) { return (oldpix > newpix) ? oldpix : newp… in raster_op_20() argument
[all …]
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/cpu/tms34010/
H A Dtms34010.c689 static INT32 raster_op_1(INT32 newpix, INT32 oldpix) { return newpix & oldpix; } in raster_op_1() argument
690 static INT32 raster_op_2(INT32 newpix, INT32 oldpix) { return newpix & ~oldpix; } in raster_op_2() argument
692 static INT32 raster_op_4(INT32 newpix, INT32 oldpix) { return newpix | ~oldpix; } in raster_op_4() argument
696 static INT32 raster_op_8(INT32 newpix, INT32 oldpix) { return newpix | oldpix; } in raster_op_8() argument
698 static INT32 raster_op_10(INT32 newpix, INT32 oldpix) { return newpix ^ oldpix; } in raster_op_10() argument
703 static INT32 raster_op_15(INT32 newpix, INT32 oldpix) { return ~newpix; } in raster_op_15() argument
704 static INT32 raster_op_16(INT32 newpix, INT32 oldpix) { return newpix + oldpix; } in raster_op_16() argument
711 static INT32 raster_op_18(INT32 newpix, INT32 oldpix) { return oldpix - newpix; } in raster_op_18() argument
712 static INT32 raster_op_19(INT32 newpix, INT32 oldpix) { return (oldpix > newpix) ? oldpix - newpix in raster_op_19() argument
713 static INT32 raster_op_20(INT32 newpix, INT32 oldpix) { return (oldpix > newpix) ? oldpix : newpix;… in raster_op_20() argument
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/cpu/tms34010/
H A Dtms34010.c703 static INT32 raster_op_1(INT32 newpix, INT32 oldpix) { return newpix & oldpix; } in raster_op_1() argument
704 static INT32 raster_op_2(INT32 newpix, INT32 oldpix) { return newpix & ~oldpix; } in raster_op_2() argument
706 static INT32 raster_op_4(INT32 newpix, INT32 oldpix) { return newpix | ~oldpix; } in raster_op_4() argument
710 static INT32 raster_op_8(INT32 newpix, INT32 oldpix) { return newpix | oldpix; } in raster_op_8() argument
712 static INT32 raster_op_10(INT32 newpix, INT32 oldpix) { return newpix ^ oldpix; } in raster_op_10() argument
717 static INT32 raster_op_15(INT32 newpix, INT32 oldpix) { return ~newpix; } in raster_op_15() argument
718 static INT32 raster_op_16(INT32 newpix, INT32 oldpix) { return newpix + oldpix; } in raster_op_16() argument
725 static INT32 raster_op_18(INT32 newpix, INT32 oldpix) { return oldpix - newpix; } in raster_op_18() argument
726 static INT32 raster_op_19(INT32 newpix, INT32 oldpix) { return (oldpix > newpix) ? oldpix - newpix in raster_op_19() argument
727 static INT32 raster_op_20(INT32 newpix, INT32 oldpix) { return (oldpix > newpix) ? oldpix : newpix;… in raster_op_20() argument
[all …]
/dports/audio/sonata/sonata-1.7b1-22-gcee3555/sonata/
H A Dimg.py63 newpix = GdkPixbuf.Pixbuf.new(GdkPixbuf.Colorspace.RGB, True, 8, width + 2,
65 newpix.fill(0x858585ff)
66 pix.copy_area(0, 0, width, height, newpix, 1, 1)
67 return newpix
/dports/graphics/leptonica/leptonica-1.76.0/prog/
H A Djbrankhaus.c164 PIX *newpix; in main() local
174 newpix = pixaGetPix(newpixa, i, L_CLONE); in main()
175 pixEqual(pix, newpix, &same); in main()
181 pixDestroy(&newpix); in main()
H A Djbcorrelation.c164 PIX *newpix; in main() local
174 newpix = pixaGetPix(newpixa, i, L_CLONE); in main()
175 pixEqual(pix, newpix, &same); in main()
181 pixDestroy(&newpix); in main()
/dports/graphics/lazpaint/lazpaint-7.1.6/bgrabitmapnew/bgrabitmap/
H A Dbgraanimatedgif.pas851 oldpix, newpix, newbackpix: LongWord;
917 newpix := PNewPix^;
920 PChangePix^ := newpix //pixel opaque
921 else if newpix and AlphaMask > 0 then
957 newpix := PNewPix^;
961 else if newpix and AlphaMask > 0 then
1052 newpix: LongWord;
1088 newpix := PNewPix^;
1090 if newpix and AlphaMask = AlphaMask then
1091 PChangePix^ := newpix //pixel opaque
[all …]
/dports/editors/cudatext/CudaText-1.151.0/bgrabitmap/bgrabitmap/
H A Dbgraanimatedgif.pas851 oldpix, newpix, newbackpix: LongWord;
917 newpix := PNewPix^;
920 PChangePix^ := newpix //pixel opaque
921 else if newpix and AlphaMask > 0 then
957 newpix := PNewPix^;
961 else if newpix and AlphaMask > 0 then
1052 newpix: LongWord;
1088 newpix := PNewPix^;
1090 if newpix and AlphaMask = AlphaMask then
1091 PChangePix^ := newpix //pixel opaque
[all …]
/dports/lang/squeak/Squeak-4.10.2.2614-src/unix/vm-display-X11/
H A DsqUnixX11.c4977 newpix= newpix >> 8; in copyImage8To24()
4980 newpix= newpix >> 8; in copyImage8To24()
4990 newpix= newpix >> 8; in copyImage8To24()
4993 newpix= newpix >> 8; in copyImage8To24()
5003 newpix= newpix >> 8; in copyImage8To24()
5006 newpix= newpix >> 8; in copyImage8To24()
5016 newpix= newpix >> 8; in copyImage8To24()
5019 newpix= newpix >> 8; in copyImage8To24()
5161 newpix= newpix >> 8; in copyImage16To24()
5164 newpix= newpix >> 8; in copyImage16To24()
[all …]
/dports/x11-toolkits/wxgtk30/wxWidgets-3.0.5.1/src/gtk/
H A Danimate.cpp407 GdkPixbuf *newpix = gdk_pixbuf_new(GDK_COLORSPACE_RGB, false, 8, in ClearToBackgroundColour() local
409 if (!newpix) in ClearToBackgroundColour()
414 gdk_pixbuf_fill(newpix, col); in ClearToBackgroundColour()
416 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget), newpix); in ClearToBackgroundColour()
417 g_object_unref(newpix); in ClearToBackgroundColour()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/src/gtk/
H A Danimate.cpp392 GdkPixbuf *newpix = gdk_pixbuf_new(GDK_COLORSPACE_RGB, false, 8, in ClearToBackgroundColour() local
394 if (!newpix) in ClearToBackgroundColour()
399 gdk_pixbuf_fill(newpix, col); in ClearToBackgroundColour()
401 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget), newpix); in ClearToBackgroundColour()
402 g_object_unref(newpix); in ClearToBackgroundColour()
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/src/gtk/
H A Danimate.cpp392 GdkPixbuf *newpix = gdk_pixbuf_new(GDK_COLORSPACE_RGB, false, 8, in ClearToBackgroundColour() local
394 if (!newpix) in ClearToBackgroundColour()
399 gdk_pixbuf_fill(newpix, col); in ClearToBackgroundColour()
401 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget), newpix); in ClearToBackgroundColour()
402 g_object_unref(newpix); in ClearToBackgroundColour()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/src/gtk/
H A Danimate.cpp392 GdkPixbuf *newpix = gdk_pixbuf_new(GDK_COLORSPACE_RGB, false, 8, in ClearToBackgroundColour() local
394 if (!newpix) in ClearToBackgroundColour()
399 gdk_pixbuf_fill(newpix, col); in ClearToBackgroundColour()
401 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget), newpix); in ClearToBackgroundColour()
402 g_object_unref(newpix); in ClearToBackgroundColour()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/src/gtk/
H A Danimate.cpp392 GdkPixbuf *newpix = gdk_pixbuf_new(GDK_COLORSPACE_RGB, false, 8, in ClearToBackgroundColour() local
394 if (!newpix) in ClearToBackgroundColour()
399 gdk_pixbuf_fill(newpix, col); in ClearToBackgroundColour()
401 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget), newpix); in ClearToBackgroundColour()
402 g_object_unref(newpix); in ClearToBackgroundColour()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/ext/wxWidgets/src/gtk/
H A Danimate.cpp407 GdkPixbuf *newpix = gdk_pixbuf_new(GDK_COLORSPACE_RGB, false, 8, in ClearToBackgroundColour() local
409 if (!newpix) in ClearToBackgroundColour()
414 gdk_pixbuf_fill(newpix, col); in ClearToBackgroundColour()
416 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget), newpix); in ClearToBackgroundColour()
417 g_object_unref(newpix); in ClearToBackgroundColour()

1234