Home
last modified time | relevance | path

Searched refs:getTexture (Results 1 – 25 of 66) sorted by relevance

123

/external/replicaisland/src/com/replica/replicaisland/
DHudSystem.java283 Texture tex = mFuelDrawable.getTexture(); in update()
285 Texture backgroundTex = mFuelBackgroundDrawable.getTexture(); in update()
303 bitmap.setTexture(mFuelDrawable.getTexture()); in update()
323 Texture tex = bitmap.getTexture(); in update()
341 Texture tex = bitmap.getTexture(); in update()
355 Texture tex = mMovementSliderBaseDrawable.getTexture(); in update()
361 Texture tex = mMovementSliderButtonDrawable.getTexture(); in update()
367 Texture tex = mMovementSliderButtonDepressedDrawable.getTexture(); in update()
386 Texture tex = mCoinDrawable.getTexture(); in update()
406 Texture tex = mRubyDrawable.getTexture(); in update()
[all …]
DDebugSystem.java70 Texture texture = getTexture(shapeType, colorType); in drawShape()
83 private final Texture getTexture(int shapeType, int colorType) { in getTexture() method in DebugSystem
DDrawableObject.java52 public Texture getTexture() { in getTexture() method in DrawableObject
DMotionBlurComponent.java70 Texture currentTexture = drawable.getTexture(); in update()
/external/skia/src/effects/
DSkBlendImageFilter.cpp178 GrTexture* background = (GrTexture*) backgroundBM.getTexture(); in filterImageGPU()
183 GrTexture* foreground = (GrTexture*) foregroundBM.getTexture(); in filterImageGPU()
223 return fForegroundAccess.getTexture() == s.fForegroundAccess.getTexture() && in onIsEqual()
224 fBackgroundAccess.getTexture() == s.fBackgroundAccess.getTexture() && in onIsEqual()
236 if (GrPixelConfigIsOpaque(fForegroundAccess.getTexture()->config()) || in getConstantColorComponents()
237 GrPixelConfigIsOpaque(fBackgroundAccess.getTexture()->config())) { in getConstantColorComponents()
DSkImageFilterUtils.cpp33 if (!result->getTexture()) { in GetInputResultGPU()
34 GrContext* context = ((GrTexture *) src.getTexture())->getContext(); in GetInputResultGPU()
DSkDisplacementMapEffect.cpp283 GrTexture* color = (GrTexture*) colorBM.getTexture(); in filterImageGPU()
288 GrTexture* displacement = (GrTexture*) displacementBM.getTexture(); in filterImageGPU()
337 return fDisplacementAccess.getTexture() == s.fDisplacementAccess.getTexture() && in onIsEqual()
338 fColorAccess.getTexture() == s.fColorAccess.getTexture() && in onIsEqual()
/external/skia/src/gpu/effects/
DGrSingleTextureEffect.h36 return fTextureAccess.getTexture() == otherAccess.getTexture() && in hasSameTextureParamsAndMatrix()
DGrTextureStripAtlas.h71 GrTexture* getTexture() const { return fTexture; } in getTexture() function
/external/skia/include/gpu/
DGrEffect.h137 GrTexture* texture(int index) const { return this->textureAccess(index).getTexture(); } in texture()
158 fTextureAccesses[t]->getTexture()->incDeferredRefCount(); in incDeferredRefCounts()
164 fTextureAccesses[t]->getTexture()->decDeferredRefCount(); in decDeferredRefCounts()
DSkGrPixelRef.h54 virtual SkGpuTexture* getTexture() SK_OVERRIDE;
/external/skia/src/image/
DSkImage_Gpu.cpp25 GrTexture* getTexture() { return fTexture; } in getTexture() function in SkImage_Gpu
80 return ((SkImage_Gpu*)image)->getTexture(); in SkTextureImageGetTexture()
/external/skia/tools/
Dpicture_utils.cpp17 SkASSERT(NULL == bitmap.getTexture()); in force_all_opaque()
19 if (NULL != bitmap.getTexture() || SkBitmap::kARGB_8888_Config == bitmap.config()) { in force_all_opaque()
/external/jmonkeyengine/engine/src/test/jme3test/texture/
DTestTexture3D.java66 Texture texture = this.getTexture(); in simpleInitApp()
89 private Texture getTexture() throws IOException { in getTexture() method in TestTexture3D
/external/skia/src/gpu/gl/debug/
DGrTextureUnitObj.h35 GrTextureObj *getTexture() { return fTexture; } in getTexture() function
/external/skia/src/gpu/
DSkGpuDevice.cpp111 GrTexture* result = (GrTexture*)bitmap.getTexture(); in set()
1060 if (NULL != bitmap.getTexture()) { in shouldTileBitmap()
1306 SkAutoLockPixels alp(bitmap, !bitmap.getTexture()); in internalDrawBitmap()
1307 if (!bitmap.getTexture() && !bitmap.readyToDraw()) { in internalDrawBitmap()
1447 SkAutoLockPixels alp(bitmap, !bitmap.getTexture()); in drawSprite()
1448 if (!bitmap.getTexture() && !bitmap.readyToDraw()) { in drawSprite()
1474 … GrSimpleTextureEffect::Create((GrTexture*) filterBitmap.getTexture(), SkMatrix::I()))->unref(); in drawSprite()
1475 texture = (GrTexture*) filterBitmap.getTexture(); in drawSprite()
1551 … GrSimpleTextureEffect::Create((GrTexture*) filterBitmap.getTexture(), SkMatrix::I()))->unref(); in drawDevice()
1552 devTex = (GrTexture*) filterBitmap.getTexture(); in drawDevice()
[all …]
DGrSWMaskHelper.cpp120 bool GrSWMaskHelper::getTexture(GrAutoScratchTexture* texture) { in getTexture() function in GrSWMaskHelper
176 if (!helper.getTexture(&ast)) { in DrawPathMaskToTexture()
DGrSWMaskHelper.h63 bool getTexture(GrAutoScratchTexture* texture);
DGrAtlas.h67 GrTexture* getTexture(GrMaskFormat format) const { in getTexture() function
/external/skia/tests/
DGpuBitmapCopyTest.cpp79 SkASSERT(src.getTexture() != NULL); in TestIndividualCopy()
83 if (dst.getTexture() != NULL) { in TestIndividualCopy()
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
DResourceManager.cpp246 Texture *ResourceManager::getTexture(unsigned int handle) in getTexture() function in gl::ResourceManager
307 if (!getTexture(texture) && texture != 0) in checkTextureAllocation()
DResourceManager.h60 Texture *getTexture(GLuint handle);
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
DRenderImageJme.java75 public Texture2D getTexture(){ in getTexture() method in RenderImageJme
/external/skia/include/core/
DSkPixelRef.h147 virtual SkGpuTexture* getTexture() { return NULL; } in getTexture() function
/external/skia/legacy/include/core/
DSkPixelRef.h136 virtual SkGpuTexture* getTexture() { return NULL; } in getTexture() function

123