Home
last modified time | relevance | path

Searched refs:pixMap (Results 1 – 25 of 26) sorted by relevance

12

/dports/games/libretro-scummvm/scummvm-7b1e929/image/
H A Dpict.cpp275 PixMap pixMap; in readPixMap() local
283 pixMap.packType = stream.readUint16BE(); in readPixMap()
284 pixMap.packSize = stream.readUint32BE(); in readPixMap()
285 pixMap.hRes = stream.readUint32BE(); in readPixMap()
286 pixMap.vRes = stream.readUint32BE(); in readPixMap()
290 pixMap.cmpSize = stream.readUint16BE(); in readPixMap()
292 pixMap.pmTable = stream.readUint32BE(); in readPixMap()
294 return pixMap; in readPixMap()
298 PICTDecoder::PixMap pixMap; member
338 if (packBitsData.pixMap.pixelSize <= 8) in unpackBitsRect()
[all …]
/dports/games/scummvm/scummvm-2.5.1/image/
H A Dpict.cpp275 PixMap pixMap; in readPixMap() local
283 pixMap.packType = stream.readUint16BE(); in readPixMap()
284 pixMap.packSize = stream.readUint32BE(); in readPixMap()
285 pixMap.hRes = stream.readUint32BE(); in readPixMap()
286 pixMap.vRes = stream.readUint32BE(); in readPixMap()
290 pixMap.cmpSize = stream.readUint16BE(); in readPixMap()
292 pixMap.pmTable = stream.readUint32BE(); in readPixMap()
294 return pixMap; in readPixMap()
298 PICTDecoder::PixMap pixMap; member
338 if (packBitsData.pixMap.pixelSize <= 8) in unpackBitsRect()
[all …]
/dports/games/residualvm/residualvm-0.3.1/image/
H A Dpict.cpp269 PixMap pixMap; in readPixMap() local
277 pixMap.packType = stream.readUint16BE(); in readPixMap()
278 pixMap.packSize = stream.readUint32BE(); in readPixMap()
279 pixMap.hRes = stream.readUint32BE(); in readPixMap()
280 pixMap.vRes = stream.readUint32BE(); in readPixMap()
284 pixMap.cmpSize = stream.readUint16BE(); in readPixMap()
286 pixMap.pmTable = stream.readUint32BE(); in readPixMap()
288 return pixMap; in readPixMap()
292 PICTDecoder::PixMap pixMap; member
332 if (packBitsData.pixMap.pixelSize <= 8) in unpackBitsRect()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/pegasus/
H A Dcursor.cpp164 Image::PICTDecoder::PixMap pixMap = Image::PICTDecoder::readPixMap(*cicnStream); in loadCursorImage() local
199 if (pixMap.pixelSize == 8) { in loadCursorImage()
200 …cursorInfo.surface->create(pixMap.rowBytes, pixMap.bounds.height(), Graphics::PixelFormat::createF… in loadCursorImage()
201 cicnStream->read(cursorInfo.surface->getPixels(), pixMap.rowBytes * pixMap.bounds.height()); in loadCursorImage()
206 } else if (pixMap.pixelSize == 1) { in loadCursorImage()
207 …cursorInfo.surface->create(pixMap.bounds.width(), pixMap.bounds.height(), Graphics::PixelFormat::c… in loadCursorImage()
209 for (int y = 0; y < pixMap.bounds.height(); y++) { in loadCursorImage()
212 for (int x = 0; x < pixMap.bounds.width();) { in loadCursorImage()
218 if (++x == pixMap.bounds.width()) in loadCursorImage()
224 error("Unhandled %dbpp cicn images", pixMap.pixelSize); in loadCursorImage()
/dports/games/scummvm/scummvm-2.5.1/engines/pegasus/
H A Dcursor.cpp165 Image::PICTDecoder::PixMap pixMap = Image::PICTDecoder::readPixMap(*cicnStream); in loadCursorImage() local
200 if (pixMap.pixelSize == 8) { in loadCursorImage()
201 …cursorInfo.surface->create(pixMap.rowBytes, pixMap.bounds.height(), Graphics::PixelFormat::createF… in loadCursorImage()
202 cicnStream->read(cursorInfo.surface->getPixels(), pixMap.rowBytes * pixMap.bounds.height()); in loadCursorImage()
207 } else if (pixMap.pixelSize == 1) { in loadCursorImage()
208 …cursorInfo.surface->create(pixMap.bounds.width(), pixMap.bounds.height(), Graphics::PixelFormat::c… in loadCursorImage()
210 for (int y = 0; y < pixMap.bounds.height(); y++) { in loadCursorImage()
213 for (int x = 0; x < pixMap.bounds.width();) { in loadCursorImage()
219 if (++x == pixMap.bounds.width()) in loadCursorImage()
225 error("Unhandled %dbpp cicn images", pixMap.pixelSize); in loadCursorImage()
/dports/graphics/dataplot/dataplot-2c1b27601a3b7523449de612613eadeead9a8f70/lib/frscript/
H A DxdpGraph.tcl7 if {![info exists pixMap(new)]} {set pixMap(new) 1}
8 if {![info exists pixMap(label)]} {set pixMap(label) ""}
389 global pixMap
390 if {![info exists pixMap(num)]} {set pixMap(num) 2}
392 incr pixMap(num) -1
399 set pixMap(label) $pixMap(file)
401 incr pixMap(num) 1
408 global pixMap
409 if {![info exists pixMap(num)]} {set pixMap(num) 0}
411 incr pixMap(num) 1
[all …]
/dports/graphics/freeimage/FreeImage/Source/FreeImage/
H A DPluginPICT.cpp813 switch ( pixMap->pixelSize ) { in DecodeOp9a()
815 Unpack32Bits( io, handle, dib, &pixMap->Bounds, 0, pixMap->cmpCount ); in DecodeOp9a()
821 UnpackBits( io, handle, dib, &pixMap->Bounds, 0, pixMap->pixelSize ); in DecodeOp9a()
878 switch ( pixMap->pixelSize ) { in DecodePixmap()
880 Unpack32Bits( io, handle, dib, &pixMap->Bounds, rowBytes, pixMap->cmpCount ); in DecodePixmap()
886 UnpackBits( io, handle, dib, &pixMap->Bounds, rowBytes, pixMap->pixelSize ); in DecodePixmap()
985 MacpixMap pixMap; in Load() local
1223 bounds = pixMap.Bounds; in Load()
1232 hRes = pixMap.hRes << 16; in Load()
1249 bounds = pixMap.Bounds; in Load()
[all …]
/dports/graphics/p5-Image-ExifTool-devel/Image-ExifTool-12.14/lib/Image/ExifTool/
H A DPICT.pm65 pixMap => 'PixMap',
84 pixMap => 'PixMap',
124 pixMap => 'PixMap',
132 pixMap => 'PixMap',
221 pixMap => 'PixMap',
957 my ($pixMap, $raf) = @_;
958 my $packType = $pixMap->{packType};
959 my $rowBytes = $pixMap->{rowBytes} & 0x3fff; # remove flags bits
960 my $height = $pixMap->{bounds}->{botRight}->{v} -
961 $pixMap->{bounds}->{topLeft}->{v};
/dports/graphics/p5-Image-ExifTool/Image-ExifTool-12.30/lib/Image/ExifTool/
H A DPICT.pm65 pixMap => 'PixMap',
84 pixMap => 'PixMap',
124 pixMap => 'PixMap',
132 pixMap => 'PixMap',
221 pixMap => 'PixMap',
957 my ($pixMap, $raf) = @_;
958 my $packType = $pixMap->{packType};
959 my $rowBytes = $pixMap->{rowBytes} & 0x3fff; # remove flags bits
960 my $height = $pixMap->{bounds}->{botRight}->{v} -
961 $pixMap->{bounds}->{topLeft}->{v};
/dports/x11-toolkits/wxgtk31/wxWidgets-3.1.5/src/qt/
H A Dstatbmp.cpp54 static void SetPixmap( QLabel *label, const QPixmap *pixMap ) in SetPixmap() argument
56 if ( pixMap != NULL ) in SetPixmap()
57 label->setPixmap( *pixMap ); in SetPixmap()
/dports/biology/ncbi-toolkit/ncbi/vibrant/
H A Dimage.c85 HBITMAP pixMap; member
700 if ( im->pixMap ) DeleteObject( im->pixMap ); in Nlm_DeleteImage()
886 if ( im->pixMap ) { in Nlm_ImageShow()
887 DeleteObject( im->pixMap ); in Nlm_ImageShow()
888 im->pixMap = NULL; in Nlm_ImageShow()
890 im->pixMap = CreateDIBitmap(Nlm_currentHDC, in Nlm_ImageShow()
896 if ( !im->pixMap ) { in Nlm_ImageShow()
910 SelectObject(im->hMemDC, im->pixMap); in Nlm_ImageShow()
/dports/audio/amarok/amarok-3e11ccdd1417e70486eaaa84d8475182eec44c20/src/scripting/scriptengine/qtbindings/
H A DGuiLabel.cpp151 void Label::setPixmap(const QPixmap &pixMap) in setPixmap() argument
153 QLabel::setPixmap(pixMap); in setPixmap()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/gpu/
H A DGrProxyProvider.cpp254 SkPixmap pixMap; in createTextureProxy() local
255 SkAssertResult(srcImage->peekPixels(&pixMap)); in createTextureProxy()
256 GrMipLevel mipLevel = { pixMap.addr(), pixMap.rowBytes() }; in createTextureProxy()
/dports/biology/ugene/ugene-40.1/src/plugins/dotplot/src/
H A DDotPlotWidget.cpp73 …), filtration(false), dotPlotIsCalculating(false), dotPlotTask(nullptr), pixMap(nullptr), miniMap(… in DotPlotWidget()
180 delete pixMap; in ~DotPlotWidget()
821 delete pixMap; in pixMapUpdate()
822 pixMap = new QPixmap(w, h); in pixMapUpdate()
824 QPainter pixp(pixMap); in pixMapUpdate()
1070 if (pixMap) { in drawDots()
1071 p.drawPixmap(0, 0, w, h, *pixMap); in drawDots()
1604 if (pixMap && (oldw > 0) && (oldh > 0)) { in resizeEvent()
H A DDotPlotWidget.h149 QPixmap *pixMap; variable
/dports/graphics/netpbm/netpbm-10.91.01/converter/ppm/
H A Dpicttoppm.c68 struct pixMap { struct
2083 readPixmap(struct pixMap * const p) { in readPixmap()
2772 bool pixMap; in readPattern() local
2774 struct pixMap p; in readPattern()
3826 struct pixMap p; in directBits()
3911 struct pixMap p; in doPixmap()
4010 bool pixMap; in BitsRect() local
4016 interpretRowBytesWord(rowBytesWord, &pixMap, &rowBytes); in BitsRect()
4018 if (pixMap) in BitsRect()
4034 bool pixMap; in BitsRegion() local
[all …]
/dports/graphics/goom/goom2k4-0/mac/iTunes/
H A DiGoom.c133 PixMapHandle pixMap; in GetPortCopyBitsBitMap() local
135 pixMap = GetPortPixMap(port); in GetPortCopyBitsBitMap()
136 destBMap = (BitMap*) (*pixMap); in GetPortCopyBitsBitMap()
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/gpu/
H A DGrProxyProvider.cpp295 SkPixmap pixMap; in createTextureProxy() local
296 SkAssertResult(srcImage->peekPixels(&pixMap)); in createTextureProxy()
297 GrMipLevel mipLevel = { pixMap.addr(), pixMap.rowBytes() }; in createTextureProxy()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/gpu/
H A DGrProxyProvider.cpp295 SkPixmap pixMap; in createTextureProxy() local
296 SkAssertResult(srcImage->peekPixels(&pixMap)); in createTextureProxy()
297 GrMipLevel mipLevel = { pixMap.addr(), pixMap.rowBytes() }; in createTextureProxy()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/gpu/
H A DGrProxyProvider.cpp295 SkPixmap pixMap; in createTextureProxy() local
296 SkAssertResult(srcImage->peekPixels(&pixMap)); in createTextureProxy()
297 GrMipLevel mipLevel = { pixMap.addr(), pixMap.rowBytes() }; in createTextureProxy()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/gpu/
H A DGrProxyProvider.cpp295 SkPixmap pixMap; in createTextureProxy() local
296 SkAssertResult(srcImage->peekPixels(&pixMap)); in createTextureProxy()
297 GrMipLevel mipLevel = { pixMap.addr(), pixMap.rowBytes() }; in createTextureProxy()
/dports/misc/openmvg/openMVG-2.0/src/openMVG_Samples/describe_and_match_GUI/
H A DMainWindow.cpp284 QPixmap pixMap = m_view->grab(); in onExportImage() local
285 pixMap.save( file ); in onExportImage()
/dports/lang/fpc-source/fpc-3.2.2/packages/univint/src/
H A DQuickdraw.pas4977 function GetPixBounds( pixMap: PixMapHandle; var bounds: Rect ): RectPtr; external name '_GetPixBou… in GetPixBounds()
4992 function GetPixDepth( pixMap: PixMapHandle ): SInt16; external name '_GetPixDepth'; in GetPixDepth()
/dports/lang/python-legacy/Python-2.7.18/Mac/Modules/qd/
H A D_Qdmodule.c5006 PixMapHandle pixMap; in Qd_GetPixBounds() local
5012 ResObj_Convert, &pixMap)) in Qd_GetPixBounds()
5014 GetPixBounds(pixMap, in Qd_GetPixBounds()
5025 PixMapHandle pixMap; in Qd_GetPixDepth() local
5030 ResObj_Convert, &pixMap)) in Qd_GetPixDepth()
5032 _rv = GetPixDepth(pixMap); in Qd_GetPixDepth()
/dports/lang/python27/Python-2.7.18/Mac/Modules/qd/
H A D_Qdmodule.c5006 PixMapHandle pixMap; in Qd_GetPixBounds() local
5012 ResObj_Convert, &pixMap)) in Qd_GetPixBounds()
5014 GetPixBounds(pixMap, in Qd_GetPixBounds()
5025 PixMapHandle pixMap; in Qd_GetPixDepth() local
5030 ResObj_Convert, &pixMap)) in Qd_GetPixDepth()
5032 _rv = GetPixDepth(pixMap); in Qd_GetPixDepth()

12