HomeSort by relevance Sort by last modified time
    Searched refs:getTexture (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/src/image/
SkImage_Gpu.cpp 28 GrTexture* getTexture() const { return fBitmap.getTexture(); }
47 SkASSERT(fBitmap.getTexture());
70 return fBitmap.getTexture();
84 if (NULL == bitmap.getTexture()) {
92 return ((SkImage_Gpu*)image)->getTexture();
  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrTextureUnitObj.h 34 GrTextureObj *getTexture() { return fTexture; }
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrYUVtoRGBEffect.cpp 114 return fYAccess.getTexture() == s.fYAccess.getTexture() &&
115 fUAccess.getTexture() == s.fUAccess.getTexture() &&
116 fVAccess.getTexture() == s.fVAccess.getTexture() &&
GrTextureStripAtlas.h 71 GrTexture* getTexture() const { return fTexture; }
  /external/chromium_org/third_party/angle/src/libGLESv2/
FramebufferAttachment.h 70 virtual Texture *getTexture() = 0;
98 virtual Texture *getTexture();
127 virtual Texture *getTexture();
FramebufferAttachment.cpp 138 Texture *TextureAttachment::getTexture()
213 Texture *RenderbufferAttachment::getTexture()
Framebuffer.cpp 29 gl::Texture *texture = attachment->getTexture();
49 gl::Texture *texture = attachment->getTexture();
113 Texture *texture = context->getTexture(handle);
131 Texture *texture = context->getTexture(handle);
144 Texture *texture = context->getTexture(handle);
157 Texture *texture = context->getTexture(handle);
ResourceManager.h 64 Texture *getTexture(GLuint handle);
  /external/chromium_org/third_party/skia/include/gpu/
SkGrPixelRef.h 52 virtual GrTexture* getTexture() SK_OVERRIDE;
GrTextureAccess.h 159 (this->getTexture() == other.getTexture()) &&
165 GrTexture* getTexture() const { return fTexture.get(); }
GrProcessor.h 104 GrTexture* texture(int index) const { return this->textureAccess(index).getTexture(); }
  /external/chromium_org/third_party/skia/tools/
picture_utils.cpp 19 SkASSERT(NULL == bitmap.getTexture());
21 if (bitmap.getTexture() || kN32_SkColorType == bitmap.colorType()) {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
WebGLImageBufferSurface.cpp 61 GrTexture* texture = m_bitmap.getTexture();
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/
GaneshUtils.cpp 41 if (!bitmap.getTexture() || bitmap.width() != size.width() || bitmap.height() != size.height()) {
  /external/chromium_org/third_party/skia/src/gpu/
GrTextStrike.h 37 GrTexture* getTexture() const { return fAtlas->getTexture(); }
GrSWMaskHelper.h 53 // your own texture to draw into, and not a scratch texture via getTexture().
66 bool getTexture(GrAutoScratchTexture* texture);
GrAtlas.h 115 GrTexture* getTexture() const {
GrLayerCache.cpp 155 SkDEBUGCODE(GrAutoValidateLayer avl(fAtlas->getTexture(), layer);)
190 SkDEBUGCODE(avl.setBackingTexture(fAtlas->getTexture()));
196 layer->setTexture(fAtlas->getTexture(), bounds);
223 SkDEBUGCODE(GrAutoValidateLayer avl(fAtlas->getTexture(), layer);)
267 layer->validate(fAtlas->getTexture());
  /external/chromium_org/third_party/skia/tests/
SurfaceTest.cpp 377 REPORTER_ASSERT(reporter, image4->getTexture() != image3->getTexture());
379 REPORTER_ASSERT(reporter, image4->getTexture() != image2->getTexture());
380 REPORTER_ASSERT(reporter, image4->getTexture() != image1->getTexture());
381 REPORTER_ASSERT(reporter, image3->getTexture() != image2->getTexture());
382 REPORTER_ASSERT(reporter, image3->getTexture() != image1->getTexture());
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
RenderTarget11.h 33 ID3D11Resource *getTexture() const;
  /external/chromium_org/third_party/skia/include/core/
SkImage.h 64 * Return the GrTexture that stores the image pixels. Calling getTexture
68 GrTexture* getTexture();
SkPixelRef.h 221 virtual GrTexture* getTexture() { return NULL; }
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProcessor.h 52 , fConfigComponentMask(GrPixelConfigComponentMask(access.getTexture()->config())) {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridge.cpp 321 mailboxInfo->m_image->getTexture()->resetFlag(static_cast<GrTextureFlags>(GrTexture::kReturnToCache_FlagBit));
322 mailboxInfo->m_image->getTexture()->textureParamsModified();
438 ASSERT(mailboxInfo->m_image->getTexture());
443 mailboxInfo->m_image->getTexture()->textureParamsModified();
445 webContext->bindTexture(GL_TEXTURE_2D, mailboxInfo->m_image->getTexture()->getTextureHandle());
513 GrTexture* texture = mailboxInfo->m_image->getTexture();
  /external/chromium_org/third_party/skia/src/effects/
SkXfermodeImageFilter.cpp 125 GrTexture* backgroundTex = background.getTexture();
132 GrTexture* foregroundTex = foreground.getTexture();

Completed in 7390 milliseconds

1 2 3