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

1 2 3 4

  /frameworks/base/libs/hwui/
Texture.h 38 inline void setWrap(GLenum wrap, bool bindTexture = false, bool force = false,
40 setWrapST(wrap, wrap, bindTexture, force, renderTarget);
43 virtual void setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture = false,
46 inline void setFilter(GLenum filter, bool bindTexture = false, bool force = false,
48 setFilterMinMag(filter, filter, bindTexture, force, renderTarget);
51 virtual void setFilterMinMag(GLenum min, GLenum mag, bool bindTexture = false,
Texture.cpp 41 void Texture::setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture, bool force,
50 if (bindTexture) {
51 mCaches.bindTexture(renderTarget, id);
59 void Texture::setFilterMinMag(GLenum min, GLenum mag, bool bindTexture, bool force,
68 if (bindTexture) {
69 mCaches.bindTexture(renderTarget, id);
Dither.cpp 35 mCaches->bindTexture(mDitherTexture);
74 mCaches->bindTexture(mDitherTexture);
AssetAtlas.cpp 94 virtual void setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture = false,
96 mDelegate->setWrapST(wrapS, wrapT, bindTexture, force, renderTarget);
99 virtual void setFilterMinMag(GLenum min, GLenum mag, bool bindTexture = false,
101 mDelegate->setFilterMinMag(min, mag, bindTexture, force, renderTarget);
Image.cpp 42 Caches::getInstance().bindTexture(mTexture);
Layer.h 187 void setWrap(GLenum wrap, bool bindTexture = false, bool force = false) {
188 texture.setWrap(wrap, bindTexture, force, renderTarget);
191 void setFilter(GLenum filter, bool bindTexture = false, bool force = false) {
192 texture.setFilter(filter, bindTexture, force, renderTarget);
227 void bindTexture() const;
Layer.cpp 92 bindTexture();
148 void Layer::bindTexture() const {
150 caches.bindTexture(renderTarget, texture.id);
Caches.h 242 * bindTexture(GLenum, GLuint).
244 void bindTexture(GLuint texture);
249 * bindTexture(GLuint).
251 void bindTexture(GLenum target, GLuint texture);
SkiaShader.cpp 93 void SkiaShader::bindTexture(Texture* texture, GLenum wrapS, GLenum wrapT) {
94 mCaches->bindTexture(texture->id);
161 bindTexture(texture, mWrapS, mWrapT);
239 bindTexture(texture, gTileModes[mTileX], gTileModes[mTileY]);
359 bindTexture(texture, gTileModes[mTileX], gTileModes[mTileY]);
  /external/chromium_org/cc/test/
test_web_graphics_context_3d_unittest.cc 39 context->bindTexture(GL_TEXTURE_2D, texture);
49 context->bindTexture(GL_TEXTURE_2D, texture);
63 context->bindTexture(GL_TEXTURE_2D, first_texture);
75 context->bindTexture(GL_TEXTURE_2D, second_texture);
88 context->bindTexture(GL_TEXTURE_2D, first_texture);
layer_tree_pixel_test.cc 248 context3d->bindTexture(GL_TEXTURE_2D, texture_id);
257 context3d->bindTexture(GL_TEXTURE_2D, 0);
336 context3d->bindTexture(GL_TEXTURE_2D, texture_id);
381 context3d->bindTexture(GL_TEXTURE_2D, 0);
  /external/replicaisland/src/com/replica/replicaisland/
OpenGLSystem.java 53 public static final void bindTexture(int target, int texture) {
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLDrawBuffers.cpp 127 context->bindTexture(GL_TEXTURE_2D, depthStencil);
133 context->bindTexture(GL_TEXTURE_2D, depth);
143 context->bindTexture(GL_TEXTURE_2D, color);
  /frameworks/rs/
rsProgram.h 70 void bindTexture(Context *, uint32_t slot, Allocation *);
rsProgram.cpp 117 bindTexture(NULL, ct, NULL);
179 void Program::bindTexture(Context *rsc, uint32_t slot, Allocation *a) {
220 p->bindTexture(rsc, slot, static_cast<Allocation *>(a));
  /external/chromium_org/cc/resources/
resource_provider_unittest.cc 79 MOCK_METHOD2(bindTexture, void(GLenum target, GLuint texture));
389 context->bindTexture(GL_TEXTURE_2D, lock_gl.texture_id());
483 child_context_->bindTexture(GL_TEXTURE_2D, texture);
651 child_context_->bindTexture(GL_TEXTURE_EXTERNAL_OES, external_texture_id);
757 child_context_->bindTexture(GL_TEXTURE_2D, lock.texture_id());
765 child_context_->bindTexture(GL_TEXTURE_2D, lock.texture_id());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBuffer.cpp 70 m_context->bindTexture(GL_TEXTURE_2D, m_oldTextureUnitZeroId);
212 context()->bindTexture(GL_TEXTURE_2D, nextFrontColorBuffer->textureId);
248 context()->bindTexture(GL_TEXTURE_2D, mailboxInfo->textureId);
476 m_context->bindTexture(GL_TEXTURE_2D, offscreenColorTexture);
502 m_context->bindTexture(GL_TEXTURE_2D, m_colorBuffer);
509 m_context->bindTexture(GL_TEXTURE_2D, 0);
  /external/chromium_org/content/common/gpu/client/
gl_helper_benchmark.cc 160 context_->bindTexture(GL_TEXTURE_2D, dst_texture);
170 context_->bindTexture(GL_TEXTURE_2D, src_texture);
260 context_->bindTexture(GL_TEXTURE_2D, src_texture);
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ProgramFragmentFixedFunctionTest.java 71 pf.bindTexture(mTex2D, t);
ProgramFragmentTest.java 115 pf.bindTexture(textures[i], i);
119 p.bindTexture(textures[i], i);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
DrawingBufferTest.cpp 66 virtual void bindTexture(WGC3Denum target, WebGLId texture)
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 171 if (bind) mCaches.bindTexture(getTextureId());
191 mCaches.bindTexture(mTextureId);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11Canvas.java 284 if (!bindTexture(tex)) return;
383 if (!bindTexture(texture)) return;
400 if (!bindTexture(texture)) return;
412 if (!bindTexture(texture)) return;
455 private boolean bindTexture(BasicTexture texture) {
536 if (!bindTexture(from)) return;
562 if (!bindTexture(from)) return;
    [all...]
  /bootable/recovery/minui/
graphics.c 239 gl->bindTexture(gl, font->texture);
267 gl->bindTexture(gl, (GGLSurface*) icon);
302 gl->bindTexture(gl, (GGLSurface*) source);
  /external/chromium_org/content/browser/renderer_host/
image_transport_factory_android.cc 140 context_->bindTexture(GL_TEXTURE_2D, texture_id);

Completed in 613 milliseconds

1 2 3 4