Home
last modified time | relevance | path

Searched refs:textureImage (Results 1 – 25 of 446) sorted by relevance

12345678910>>...18

/dports/games/dustrac/DustRacing2D-ae380b8/src/game/MiniCore/src/Asset/
H A Dmcsurfacemanager.cc327 QImage textureImage = image;
333 if (textureImage.width() > maxTextureSize && textureImage.height() > maxTextureSize)
335 textureImage = textureImage.scaled(maxTextureSize, maxTextureSize);
339 textureImage = textureImage.scaled(maxTextureSize, textureImage.height());
343 textureImage = textureImage.scaled(textureImage.width(), maxTextureSize);
349 textureImage = textureImage.mirrored(data.xAxisMirror, data.yAxisMirror);
353 textureImage = textureImage.convertToFormat(QImage::Format_ARGB32);
367 QImage glFormattedImage(textureImage.width(), textureImage.height(), textureImage.format());
427 …rMatch(textureImage.pixel(i, j) & 0x000000ff, b, 2) && colorMatch((textureImage.pixel(i, j) & 0x00…
433 textureImage.setPixel(i, j, textureImage.pixel(i, j) | 0xff000000);
[all …]
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/render/texture/
H A Dtextureimage_p.h113 inline QDebug operator<<(QDebug dbg, const TextureImage &textureImage)
116 dbg << "QNodeId =" << textureImage.peerId()
117 << "mip level =" << textureImage.mipLevel()
118 << "layer =" << textureImage.layer()
119 << "cube face =" << textureImage.face()
120 << "dataGenerator =" << textureImage.dataGenerator() << Qt::endl;
H A Dqabstracttexture.cpp767 void QAbstractTexture::addTextureImage(QAbstractTextureImage *textureImage) in addTextureImage() argument
769 Q_ASSERT(textureImage); in addTextureImage()
771 if (!d->m_textureImages.contains(textureImage)) { in addTextureImage()
772 d->m_textureImages.append(textureImage); in addTextureImage()
781 if (!textureImage->parent()) in addTextureImage()
782 textureImage->setParent(this); in addTextureImage()
784 d->updateNode(textureImage, "textureImage", PropertyValueAdded); in addTextureImage()
793 Q_ASSERT(textureImage); in removeTextureImage()
795 if (!d->m_textureImages.removeOne(textureImage)) in removeTextureImage()
797 d->updateNode(textureImage, "textureImage", PropertyValueRemoved); in removeTextureImage()
[all …]
/dports/games/cultivation/Cultivation_8_UnixSource/game2/gameSource/userInterface/
H A DPauseButton.cpp34 Image *textureImage = new Image( textureSize, textureSize, 4, false ); in PauseButton() local
43 channels[i] = textureImage->getChannel( i ); in PauseButton()
96 textureImage->filter( &blur, 3 ); in PauseButton()
99 textureImage->filter( &blur, 0 ); in PauseButton()
105 mPauseTexture = new SingleTextureGL( textureImage, in PauseButton()
109 delete textureImage; in PauseButton()
H A DRestartButton.cpp34 Image *textureImage = new Image( textureSize, textureSize, 4, false ); in RestartButton() local
43 channels[i] = textureImage->getChannel( i ); in RestartButton()
117 textureImage->filter( &blur, 3 ); in RestartButton()
120 textureImage->filter( &blur, 0 ); in RestartButton()
126 mArrowTexture = new SingleTextureGL( textureImage, in RestartButton()
130 delete textureImage; in RestartButton()
H A DGiftButton.cpp33 Image *textureImage = new Image( textureSize, textureSize, 4, false ); in GiftButton() local
42 channels[i] = textureImage->getChannel( i ); in GiftButton()
116 textureImage->filter( &blur, 3 ); in GiftButton()
119 textureImage->filter( &blur, 0 ); in GiftButton()
125 mArrowTexture = new SingleTextureGL( textureImage, in GiftButton()
129 delete textureImage; in GiftButton()
H A DEatButton.cpp34 Image *textureImage = new Image( textureSize, textureSize, 4, false ); in EatButton() local
43 channels[i] = textureImage->getChannel( i ); in EatButton()
117 textureImage->filter( &blur, 0 ); in EatButton()
124 mMouthTexture = new SingleTextureGL( textureImage, in EatButton()
128 delete textureImage; in EatButton()
H A DTexturedPanel.cpp29 Image *textureImage = new Image( textureSize, textureSize, 4, false ); in TexturedPanel() local
38 channels[i] = textureImage->getChannel( i ); in TexturedPanel()
62 textureImage->filter( &blur ); in TexturedPanel()
64 mBackgroundTexture = new SingleTextureGL( textureImage, in TexturedPanel()
68 delete textureImage; in TexturedPanel()
/dports/games/cultivation/Cultivation_8_UnixSource/game2/gameSource/
H A DSoilMap.cpp77 channels[i] = textureImage->getChannel( i ); in SoilMap()
179 textureImage->filter( &blur, 0 ); in SoilMap()
180 textureImage->filter( &blur, 1 ); in SoilMap()
181 textureImage->filter( &blur, 2 ); in SoilMap()
184 mTexture = new SingleTextureGL( textureImage, false ); in SoilMap()
206 mGritTexture = new SingleTextureGL( textureImage, true ); in SoilMap()
223 delete textureImage; in SoilMap()
230 textureImage = new Image( textureSize, textureSize, 4, false ); in SoilMap()
233 channels[i] = textureImage->getChannel( i ); in SoilMap()
293 textureImage->filter( &blur, 3 ); in SoilMap()
[all …]
H A DtestPlantLeaf.cpp33 Image *textureImage = getCellularImage( textureSize, &genetics, in main() local
38 textureImage->filter( &blur); in main()
68 converter.formatImage( textureImage, outStreamB ); in main()
72 delete textureImage; in main()
H A DPlantLeaf.cpp32 Image *textureImage = new Image( textureSize, textureSize, 4 ); in getCircleImage() local
41 channels[i] = textureImage->getChannel( i ); in getCircleImage()
78 return textureImage; in getCircleImage()
216 channels[i] = textureImage->getChannel( i ); in getCellularImage()
314 double *walkerChannel = textureImage->copyChannel( 3 ); in getCellularImage()
453 return textureImage; in getCellularImage()
617 return textureImage; in getCellularImage()
631 double *alphaChannel = textureImage->getChannel( 3 ); in PlantLeaf()
648 textureImage->filter( &blur); in PlantLeaf()
651 mTexture = new SingleTextureGL( textureImage, in PlantLeaf()
[all …]
H A DglCommon.cpp35 Image *textureImage = new Image( textureSize, textureSize, 4, false ); in initCommonTextures() local
44 channels[i] = textureImage->getChannel( i ); in initCommonTextures()
92 textureImage->filter( &blur, 3 ); in initCommonTextures()
95 commonCircleTexture = new SingleTextureGL( textureImage, in initCommonTextures()
144 textureImage->filter( &blur, 3 ); in initCommonTextures()
147 commonPlusTexture = new SingleTextureGL( textureImage, in initCommonTextures()
153 delete textureImage; in initCommonTextures()
H A DSeeds.cpp85 Image *textureImage = new Image( textureSize, textureSize, 4, false ); in getParametersFromGenetics() local
94 channels[i] = textureImage->getChannel( i ); in getParametersFromGenetics()
172 textureImage->filter( &blur, 3 ); in getParametersFromGenetics()
174 mSeedTexture = new SingleTextureGL( textureImage, in getParametersFromGenetics()
178 delete textureImage; in getParametersFromGenetics()
H A DPlantFlower.cpp38 Image *textureImage = new Image( textureSize, textureSize, 4, false ); in PlantFlower() local
47 channels[i] = textureImage->getChannel( i ); in PlantFlower()
102 textureImage->filter( &blur, 3 ); in PlantFlower()
105 mCenterTexture = new SingleTextureGL( textureImage, in PlantFlower()
152 textureImage->filter( &blur, 3 ); in PlantFlower()
154 mPetalTexture = new SingleTextureGL( textureImage, in PlantFlower()
171 delete textureImage; in PlantFlower()
H A DFruit.cpp49 Image *textureImage = new Image( textureSize, textureSize, 4, false ); in Fruit() local
58 channels[i] = textureImage->getChannel( i ); in Fruit()
139 textureImage->filter( &blur, 3 ); in Fruit()
142 mShapeTexture = new SingleTextureGL( textureImage, in Fruit()
159 delete textureImage; in Fruit()
/dports/graphics/pecl-imagick/imagick-3.5.1/tests/
H A D154_Imagick_textureImage_basic.phpt2 Test Imagick, textureImage
9 function textureImage() {
17 $image = $image->textureImage($texture);
22 textureImage() ;
/dports/graphics/pecl-imagick-im7/imagick-3.5.1/tests/
H A D154_Imagick_textureImage_basic.phpt2 Test Imagick, textureImage
9 function textureImage() {
17 $image = $image->textureImage($texture);
22 textureImage() ;
/dports/graphics/jogamp-jogl/jogl/src/test/com/jogamp/opengl/test/junit/jogl/util/texture/
H A DTestTexture01AWT.java78 BufferedImage textureImage; field in TestTexture01AWT
106 textureImage = new BufferedImage(baseImage.getWidth(), in initTest()
109 Assert.assertNotNull(textureImage); in initTest()
110 g = textureImage.createGraphics(); in initTest()
121 Assert.assertNotNull(textureImage); in cleanupTest()
122 textureImage.flush(); in cleanupTest()
123 textureImage=null; in cleanupTest()
139 …al TextureData textureData = AWTTextureIO.newTextureData(caps.getGLProfile(), textureImage, false); in test1()
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_unsupported/edit_phototexturing/src/
H A DCamera.cpp38 textureImage = QString(""); in Camera()
52 textureImage = image; in assignTextureImage()
57 xml_cam.setAttribute(XML_IMAGE,textureImage); in saveAsXml()
74 textureImage = xml_cam->attribute(XML_IMAGE); in loadFromXml()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/3d/terrain/
H A Dqgsterraintileentity_p.h61 void setTextureImage( QgsTerrainTextureImage *textureImage ) { mTextureImage = textureImage; } in setTextureImage() argument
63 QgsTerrainTextureImage *textureImage() { return mTextureImage; } in textureImage() function
/dports/graphics/qgis/qgis-3.22.3/src/3d/terrain/
H A Dqgsterraintileentity_p.h61 void setTextureImage( QgsTerrainTextureImage *textureImage ) { mTextureImage = textureImage; } in setTextureImage() argument
63 QgsTerrainTextureImage *textureImage() { return mTextureImage; } in textureImage() function
/dports/games/libretro-paralleln64/parallel-n64-6e26fbb/gles2n64/src/
H A DgDP_gles2n64.c184 gDP.textureImage.format = format; in gln64gDPSetTextureImage()
185 gDP.textureImage.size = size; in gln64gDPSetTextureImage()
186 gDP.textureImage.width = width; in gln64gDPSetTextureImage()
188 gDP.textureImage.bpl = gDP.textureImage.width << gDP.textureImage.size >> 1; in gln64gDPSetTextureImage()
510 info->texWidth = gDP.textureImage.width; in gln64gDPLoadTile()
511 info->size = gDP.textureImage.size; in gln64gDPLoadTile()
517 …address = gDP.textureImage.address + gDP.loadTile->ult * gDP.textureImage.bpl + (gDP.loadTile->uls… in gln64gDPLoadTile()
545 address += gDP.textureImage.bpl; in gln64gDPLoadTile()
632 info->size = gDP.textureImage.size; in gln64gDPLoadBlock()
639 …address = gDP.textureImage.address + ult * gDP.textureImage.bpl + (uls << gDP.textureImage.size >>… in gln64gDPLoadBlock()
[all …]
/dports/multimedia/webvfx-qt5/webvfx-e918ce4/demo/examples/
H A Dtransition-demo3d.qml57 textureImage: textTexture.textureImage
65 sourceImage.textureImage = webvfx.getImage("sourceImage");
66 targetImage.textureImage = webvfx.getImage("targetImage");
/dports/x11-toolkits/qt5-datavis3d/kde-qtdatavis3d-5.15.2p2/src/datavisualization/data/
H A Dqcustom3ditem.cpp430 void QCustom3DItem::setTextureImage(const QImage &textureImage) in setTextureImage() argument
432 if (textureImage != d_ptr->m_textureImage) { in setTextureImage()
433 if (textureImage.isNull()) { in setTextureImage()
438 d_ptr->m_textureImage = textureImage; in setTextureImage()
518 QImage QCustom3DItemPrivate::textureImage() in textureImage() function in QCustom3DItemPrivate
/dports/x11-toolkits/qt5-charts/kde-qtcharts-5.15.2p2/src/chartsqml2/
H A Ddeclarativeboxplotseries.cpp359 if (QBoxSet::brush().textureImage() != brushImage) { in setBrushFilename()
373 if (!m_brushFilename.isEmpty() && QBoxSet::brush().textureImage() != m_brushImage) { in handleBrushChanged()
479 if (QBoxPlotSeries::brush().textureImage() != brushImage) { in setBrushFilename()
493 if (!m_brushFilename.isEmpty() && QBoxPlotSeries::brush().textureImage() != m_brushImage) { in handleBrushChanged()

12345678910>>...18