HomeSort by relevance Sort by last modified time
    Searched defs:textureId (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
PluginLayerChromium.h 44 void setTextureId(unsigned textureId);
45 unsigned textureId() const { return m_textureId; }
WebGLLayerChromium.cpp 105 unsigned int textureId = m_context->platformTexture();
106 if (textureId != m_textureId) {
110 m_textureId = textureId;
Canvas2DLayerChromium.cpp 101 unsigned Canvas2DLayerChromium::textureId() const
TextureManager.cpp 130 GLC(m_context.get(), m_context->deleteTexture(info.textureId));
148 unsigned textureId;
149 GLC(m_context.get(), textureId = m_context->createTexture());
150 GLC(m_context.get(), m_context->bindTexture(GraphicsContext3D::TEXTURE_2D, textureId));
161 info.textureId = textureId;
164 return textureId;
TextureManager.h 64 unsigned textureId;
LayerRendererChromium.cpp 491 unsigned textureId = 0;
492 GLC(m_context.get(), textureId = m_context->createTexture());
493 GLC(m_context.get(), m_context->bindTexture(GraphicsContext3D::TEXTURE_2D, textureId));
500 return textureId;
503 void LayerRendererChromium::deleteLayerTexture(unsigned textureId)
505 if (!textureId)
508 GLC(m_context.get(), m_context->deleteTexture(textureId));
    [all...]
  /external/webkit/Source/WebKit/android/plugins/
ANPOpenGL_npapi.h 37 GLuint textureId;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
TexturePropertyAccessor.java 52 Integer textureId = (Integer) targetTexture.getValue();
58 textureId,
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
MediaTexture.h 64 GLuint textureId;
VideoLayerAndroid.cpp 172 GLuint textureId = manager->getTextureId(uniqueId());
174 videoRect, textureId);
188 GLuint textureId = manager->getTextureId(uniqueId());
190 if (textureId && matrix) {
193 videoRect, textureId);
VideoLayerManager.h 53 GLuint textureId; // GL texture bound with the surface texture.
72 void registerTexture(const int layerId, const GLuint textureId);
VideoLayerManager.cpp 141 // The map include every video has been played, so their textureId can
143 if (it->second->textureId) {
144 ALOGV("delete texture from the map %d", it->second->textureId);
145 glDeleteTextures(1, &it->second->textureId);
146 // Set the textureID to 0 to show the video icon.
147 it->second->textureId = 0;
155 // Getting TextureId for GL draw call, in the UI thread.
161 result = m_videoLayerInfoMap.get(layerId)->textureId;
196 void VideoLayerManager::registerTexture(const int layerId, const GLuint textureId)
201 GLuint oldTextureId = m_videoLayerInfoMap.get(layerId)->textureId;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
Texture.cpp 99 int textureId = context->createTexture();
100 if (!textureId) {
105 textureIds->at(i) = textureId;
113 context->bindTexture(GraphicsContext3D::TEXTURE_2D, textureId);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
DrawQuadData.h 92 virtual int textureId() const { return 0; }
138 TextureQuadData(int textureId,
150 m_textureId = textureId;
157 int textureId,
162 m_textureId = textureId;
170 virtual int textureId() const { return m_textureId; }
  /frameworks/av/libvideoeditor/lvpp/
NativeWindowRenderer.cpp 556 GLuint textureId = input->mTextureId;
560 mThreadTextureId = textureId;
570 RenderInput::RenderInput(NativeWindowRenderer* renderer, GLuint textureId)
572 , mTextureId(textureId) {
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsRenderer.java 328 int[] textureId = new int[1];
336 GLES20.glGenTextures(1, textureId, 0);
339 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureId[0]);
359 return textureId[0];

Completed in 431 milliseconds