/frameworks/base/libs/hwui/ |
D | Texture.h | 64 inline void setWrap(GLenum wrap, bool bindTexture = false, bool force = false) { 65 setWrapST(wrap, wrap, bindTexture, force); 68 virtual void setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture = false, 71 inline void setFilter(GLenum filter, bool bindTexture = false, bool force = false) { 72 setFilterMinMag(filter, filter, bindTexture, force); 75 virtual void setFilterMinMag(GLenum min, GLenum mag, bool bindTexture = false,
|
D | Texture.cpp | 54 void Texture::setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture, bool force) { in setWrapST() argument 59 if (bindTexture) { in setWrapST() 60 mCaches.textureState().bindTexture(mTarget, mId); in setWrapST() 68 void Texture::setFilterMinMag(GLenum min, GLenum mag, bool bindTexture, bool force) { in setFilterMinMag() argument 73 if (bindTexture) { in setFilterMinMag() 74 mCaches.textureState().bindTexture(mTarget, mId); in setFilterMinMag() 129 mCaches.textureState().bindTexture(GL_TEXTURE_2D, mId); in upload() 352 mCaches.textureState().bindTexture(mTarget, mId); in upload()
|
D | SkiaShader.cpp | 59 static inline void bindTexture(Caches* caches, Texture* texture, GLenum wrapS, GLenum wrapT) { in bindTexture() function 60 caches->textureState().bindTexture(texture->target(), texture->id()); in bindTexture() 188 bindTexture(&caches, data.gradientTexture, data.wrapST, data.wrapST); in applyGradient() 254 bindTexture(&caches, data.bitmapTexture, data.wrapS, data.wrapT); in applyBitmap()
|
D | Image.cpp | 40 Caches::getInstance().textureState().bindTexture(mTexture); in Image()
|
D | GlLayer.cpp | 63 caches.textureState().bindTexture(texture.target(), texture.mId); in setRenderTarget()
|
D | OpenGLReadback.cpp | 182 caches.textureState().bindTexture(texture); in copyTextureInto() 251 caches.textureState().bindTexture(GL_TEXTURE_EXTERNAL_OES, sourceTexId); in copyImageInto()
|
D | BakedOpRenderer.cpp | 109 mCaches.textureState().bindTexture(buffer->texture.id()); in copyToLayer()
|
D | FontRenderer.cpp | 442 caches.textureState().bindTexture(lastTextureId); in checkTextureUpdateForCache()
|
/frameworks/base/libs/hwui/renderstate/ |
D | TextureState.cpp | 101 void TextureState::bindTexture(GLuint texture) { in bindTexture() function in android::uirenderer::TextureState 108 void TextureState::bindTexture(GLenum target, GLuint texture) { in bindTexture() function in android::uirenderer::TextureState 110 bindTexture(texture); in bindTexture()
|
D | TextureState.h | 53 void bindTexture(GLuint texture); 60 void bindTexture(GLenum target, GLuint texture);
|
D | RenderState.cpp | 329 mCaches->textureState().bindTexture(texture.texture->target(), texture.texture->id()); in render()
|
/frameworks/rs/ |
D | rsProgram.cpp | 119 bindTexture(nullptr, ct, nullptr); in freeChildren() 181 void Program::bindTexture(Context *rsc, uint32_t slot, Allocation *a) { in bindTexture() function in android::renderscript::Program 219 p->bindTexture(rsc, slot, static_cast<Allocation *>(a)); in rsi_ProgramBindTexture()
|
D | rsProgram.h | 70 void bindTexture(Context *, uint32_t slot, Allocation *);
|
D | rsScriptC_LibGL.cpp | 48 pf->bindTexture(rsc, slot, a); in rsrBindTexture()
|
D | rsFont.cpp | 479 mFontShaderF->bindTexture(mRSC, 0, mTextTexture.get()); in cacheBitmap()
|
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/ |
D | BallsRS.java | 110 mPFPoints.bindTexture(loadTexture(R.drawable.flares), 0); in init()
|
/frameworks/base/rs/java/android/renderscript/ |
D | Program.java | 165 public void bindTexture(Allocation va, int slot) in bindTexture() method in Program
|
/frameworks/native/opengl/libagl/ |
D | texture.cpp | 83 c->rasterizer.procs.bindTexture(c, &(u.texture->surface)); in validate_tmu() 142 c->rasterizer.procs.bindTexture(c, &(u.texture->surface)); in ogles_lock_textures() 161 c->rasterizer.procs.bindTexture(c, &(u.texture->surface)); in ogles_unlock_textures() 292 ggl->bindTexture(ggl, &src); in copyPixels() 780 c->rasterizer.procs.bindTexture(c, &(u.texture->surface)); in drawTexiOES() 1537 ggl->bindTexture(ggl, &readSurface); // source is read-buffer in glReadPixels()
|
/frameworks/base/libs/hwui/hwui/ |
D | Bitmap.cpp | 159 caches.textureState().bindTexture(mTexture); in AutoGlTexture()
|