HomeSort by relevance Sort by last modified time
    Searched refs:layerId (Results 1 - 21 of 21) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/android/layers/
VideoLayerManager.h 73 void registerTexture(const int layerId, const GLuint textureId);
75 void updateVideoLayerSize(const int layerId, const int size, const float ratio);
77 void updateMatrix(const int layerId, const GLfloat* matrix);
79 void removeLayer(const int layerId);
81 // Return the texture name corresponding to the layerId
82 GLuint getTextureId(const int layerId);
83 // Return the matrix for surface texture corresponding to the layerId
84 GLfloat* getMatrix(const int layerId);
85 // Return the aspect ratio for the video corresponding to the layerId
86 float getAspectRatio(const int layerId);
    [all...]
VideoLayerManager.cpp 155 GLuint VideoLayerManager::getTextureId(const int layerId)
159 if (m_videoLayerInfoMap.contains(layerId))
160 result = m_videoLayerInfoMap.get(layerId)->textureId;
165 float VideoLayerManager::getAspectRatio(const int layerId)
169 if (m_videoLayerInfoMap.contains(layerId))
170 result = m_videoLayerInfoMap.get(layerId)->aspectRatio;
175 GLfloat* VideoLayerManager::getMatrix(const int layerId)
179 if (m_videoLayerInfoMap.contains(layerId))
180 result = m_videoLayerInfoMap.get(layerId)->surfaceMatrix;
195 void VideoLayerManager::registerTexture(const int layerId, const GLuint textureId
    [all...]
CanvasTexture.h 77 CanvasTexture(int layerId);
CanvasTexture.cpp 200 CanvasTexture::CanvasTexture(int layerId)
202 , m_layerId(layerId)
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LayerDrawableTest.java 64 int layerId = 345;
65 layerDrawable.setId(index, layerId);
67 layerDrawable.setDrawableByLayerId(layerId, drawable4000);
77 int layerId = 345;
78 layerDrawable.setId(index, layerId);
80 layerDrawable.setDrawableByLayerId(layerId, drawable4000);
97 int layerId = 345;
98 layerDrawable.setId(index, layerId);
100 boolean ret = layerDrawable.setDrawableByLayerId(layerId, drawable4000);
  /external/webkit/Source/WebKit/android/nav/
DrawExtra.cpp 50 int layerId = layer ? layer->uniqueId() : 0;
51 return m_highlightRegions.get(layerId);
60 int layerId = layer ? layer->uniqueId() : 0;
61 SkRegion* region = m_highlightRegions.get(layerId);
64 m_highlightRegions.set(layerId, region);
SelectText.h 52 void setCaretLayerId(HandleId id, int layerId) { m_caretLayerId[id] = layerId; }
WebView.cpp 416 void scrollLayer(int layerId, int x, int y)
419 m_glWebViewState->scrollLayer(layerId, x, y);
490 LayerAndroid* toRoot, int layerId)
494 const LayerAndroid* from = fromRoot->findById(layerId);
495 LayerAndroid* to = toRoot->findById(layerId);
578 const TransformationMatrix* getLayerTransform(int layerId) {
579 if (layerId != -1 && m_baseLayer) {
580 LayerAndroid* layer = m_baseLayer->findById(layerId);
596 int layerId = selectText->caretLayerId(handleId);
605 const TransformationMatrix* transform = getLayerTransform(layerId);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
SurfaceCollectionManager.h 50 void updateScrollableLayer(int layerId, int x, int y);
SurfaceCollection.h 69 void updateScrollableLayer(int layerId, int x, int y);
SurfaceCollectionManager.cpp 184 void SurfaceCollectionManager::updateScrollableLayer(int layerId, int x, int y)
187 m_queuedCollection->updateScrollableLayer(layerId, x, y);
189 m_paintingCollection->updateScrollableLayer(layerId, x, y);
191 m_drawingCollection->updateScrollableLayer(layerId, x, y);
SurfaceCollection.cpp 212 void SurfaceCollection::updateScrollableLayer(int layerId, int x, int y)
214 LayerAndroid* layer = m_compositedRoot->findById(layerId);
  /frameworks/base/core/java/android/view/
GLES20Layer.java 77 public Finalizer(int layerId) {
78 mLayerId = layerId;
GLES20Canvas.java 171 static native boolean nResizeLayer(int layerId, int width, int height, int[] layerInfo);
172 static native void nSetOpaqueLayer(int layerId, boolean isOpaque);
173 static native void nSetLayerPaint(int layerId, int nativePaint);
174 static native void nSetLayerColorFilter(int layerId, int nativeColorFilter);
175 static native void nUpdateTextureLayer(int layerId, int width, int height, boolean opaque,
177 static native void nClearLayerTexture(int layerId);
178 static native void nSetTextureLayerTransform(int layerId, int matrix);
179 static native void nDestroyLayer(int layerId);
180 static native void nDestroyLayerDeferred(int layerId);
181 static native void nUpdateRenderLayer(int layerId, int renderer, int displayList
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GLWebViewState.h 213 void scrollLayer(int layerId, int x, int y);
GLWebViewState.cpp 122 void GLWebViewState::scrollLayer(int layerId, int x, int y)
124 m_surfaceCollectionManager.updateScrollableLayer(layerId, x, y);
  /frameworks/base/core/java/android/webkit/
HTML5VideoViewProxy.java 140 public static void enterFullScreenVideo(int layerId, String url,
156 if (layerId == mHTML5VideoView.getVideoLayerId()) {
171 layerId, savePosition, canSkipPrepare);
175 mHTML5VideoView.enterFullScreenVideoState(layerId, proxy, webView);
765 public void enterFullScreenVideo(int layerId, String url) {
766 VideoPlayer.enterFullScreenVideo(layerId, url, this, mWebView);
HTML5VideoView.java 326 public void enterFullScreenVideoState(int layerId,
HTML5VideoFullScreen.java 270 public void enterFullScreenVideoState(int layerId,
WebViewClassic.java     [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]

Completed in 778 milliseconds