Home
last modified time | relevance | path

Searched refs:layerId (Results 1 – 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/layers/
DVideoLayerManager.cpp155 GLuint VideoLayerManager::getTextureId(const int layerId) in getTextureId() argument
159 if (m_videoLayerInfoMap.contains(layerId)) in getTextureId()
160 result = m_videoLayerInfoMap.get(layerId)->textureId; in getTextureId()
165 float VideoLayerManager::getAspectRatio(const int layerId) in getAspectRatio() argument
169 if (m_videoLayerInfoMap.contains(layerId)) in getAspectRatio()
170 result = m_videoLayerInfoMap.get(layerId)->aspectRatio; in getAspectRatio()
175 GLfloat* VideoLayerManager::getMatrix(const int layerId) in getMatrix() argument
179 if (m_videoLayerInfoMap.contains(layerId)) in getMatrix()
180 result = m_videoLayerInfoMap.get(layerId)->surfaceMatrix; in getMatrix()
195 void VideoLayerManager::registerTexture(const int layerId, const GLuint textureId) in registerTexture() argument
[all …]
DVideoLayerManager.h73 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);
82 GLuint getTextureId(const int layerId);
84 GLfloat* getMatrix(const int layerId);
86 float getAspectRatio(const int layerId);
91 double drawIcon(const int layerId, IconType type);
110 void removeLayerInternal(const int layerId);
DCanvasTexture.cpp200 CanvasTexture::CanvasTexture(int layerId) in CanvasTexture() argument
202 , m_layerId(layerId) in CanvasTexture()
DCanvasTexture.h77 CanvasTexture(int layerId);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DLayerDrawableTest.java64 int layerId = 345; in testSetDrawableByLayerId1() local
65 layerDrawable.setId(index, layerId); in testSetDrawableByLayerId1()
67 layerDrawable.setDrawableByLayerId(layerId, drawable4000); in testSetDrawableByLayerId1()
77 int layerId = 345; in testSetDrawableByLayerId2() local
78 layerDrawable.setId(index, layerId); in testSetDrawableByLayerId2()
80 layerDrawable.setDrawableByLayerId(layerId, drawable4000); in testSetDrawableByLayerId2()
97 int layerId = 345; in setDrawableByLayerId_shouldReturnTrueIfIdWasFound() local
98 layerDrawable.setId(index, layerId); in setDrawableByLayerId_shouldReturnTrueIfIdWasFound()
100 boolean ret = layerDrawable.setDrawableByLayerId(layerId, drawable4000); in setDrawableByLayerId_shouldReturnTrueIfIdWasFound()
/external/webkit/Source/WebKit/android/nav/
DDrawExtra.cpp50 int layerId = layer ? layer->uniqueId() : 0; in getHighlightRegionsForLayer() local
51 return m_highlightRegions.get(layerId); in getHighlightRegionsForLayer()
60 int layerId = layer ? layer->uniqueId() : 0; in addHighlightRegion() local
61 SkRegion* region = m_highlightRegions.get(layerId); in addHighlightRegion()
64 m_highlightRegions.set(layerId, region); in addHighlightRegion()
DWebView.cpp416 void scrollLayer(int layerId, int x, int y) in scrollLayer() argument
419 m_glWebViewState->scrollLayer(layerId, x, y); in scrollLayer()
490 LayerAndroid* toRoot, int layerId) in copyScrollPosition() argument
494 const LayerAndroid* from = fromRoot->findById(layerId); in copyScrollPosition()
495 LayerAndroid* to = toRoot->findById(layerId); in copyScrollPosition()
578 const TransformationMatrix* getLayerTransform(int layerId) { in getLayerTransform() argument
579 if (layerId != -1 && m_baseLayer) { in getLayerTransform()
580 LayerAndroid* layer = m_baseLayer->findById(layerId); in getLayerTransform()
596 int layerId = selectText->caretLayerId(handleId); in getHandleLayerId() local
605 const TransformationMatrix* transform = getLayerTransform(layerId); in getHandleLayerId()
[all …]
DSelectText.h52 void setCaretLayerId(HandleId id, int layerId) { m_caretLayerId[id] = layerId; } in setCaretLayerId() argument
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DSurfaceCollectionManager.cpp184 void SurfaceCollectionManager::updateScrollableLayer(int layerId, int x, int y) in updateScrollableLayer() argument
187 m_queuedCollection->updateScrollableLayer(layerId, x, y); in updateScrollableLayer()
189 m_paintingCollection->updateScrollableLayer(layerId, x, y); in updateScrollableLayer()
191 m_drawingCollection->updateScrollableLayer(layerId, x, y); in updateScrollableLayer()
DSurfaceCollection.cpp212 void SurfaceCollection::updateScrollableLayer(int layerId, int x, int y) in updateScrollableLayer() argument
214 LayerAndroid* layer = m_compositedRoot->findById(layerId); in updateScrollableLayer()
DSurfaceCollectionManager.h50 void updateScrollableLayer(int layerId, int x, int y);
DSurfaceCollection.h69 void updateScrollableLayer(int layerId, int x, int y);
/external/webkit/Source/WebCore/platform/graphics/android/
DGLWebViewState.h213 void scrollLayer(int layerId, int x, int y);
DGLWebViewState.cpp122 void GLWebViewState::scrollLayer(int layerId, int x, int y) in scrollLayer() argument
124 m_surfaceCollectionManager.updateScrollableLayer(layerId, x, y); in scrollLayer()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp1565 int layerId = platformLayerIdFromNode(node, &layer); in setSelectionCaretInfo() local
1566 selectTextContainer->setCaretLayerId(handleId, layerId); in setSelectionCaretInfo()
1677 int layerId = platformLayerIdFromNode(node, &layer); in createSelectText() local
3466 int layerId = platformLayerIdFromNode(node, &layer); in createTextFieldInitData() local
3470 env->SetIntField(initData, classDef->m_nodeLayerId, layerId); in createTextFieldInitData()