HomeSort by relevance Sort by last modified time
    Searched defs:viewport (Results 1 - 25 of 26) sorted by null

1 2

  /frameworks/base/services/java/com/android/server/display/
DisplayDevice.java 175 * Populates the specified viewport object with orientation,
178 public final void populateViewportLocked(DisplayViewport viewport) {
179 viewport.orientation = mCurrentOrientation;
182 viewport.logicalFrame.set(mCurrentLayerStackRect);
184 viewport.logicalFrame.setEmpty();
188 viewport.physicalFrame.set(mCurrentDisplayRect);
190 viewport.physicalFrame.setEmpty();
196 viewport.deviceWidth = isRotated ? info.height : info.width;
197 viewport.deviceHeight = isRotated ? info.width : info.height;
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
FixedPositioning.cpp 36 // and the iframe's size as the viewport and pass to the children
49 SkRect viewport = getViewport(aViewport, parentIframeLayer); local
51 float w = viewport.width();
52 float h = viewport.height();
53 float dx = viewport.fLeft;
54 float dy = viewport.fTop;
117 SkRect viewport = getViewport(aViewport, parentIframeLayer); local
119 float w = viewport.width() - m_layer->getWidth();
120 float h = viewport.height() - m_layer->getHeight();
129 m_nbRepeatX = ceilf((viewport.width() / m_layer->getWidth()) + 1)
    [all...]
  /frameworks/base/libs/hwui/
Snapshot.h 171 * Current viewport.
173 Rect viewport; member in class:android::uirenderer::Snapshot
  /external/skia/tools/
render_pictures_main.cpp 38 " [--viewport width height][--scale sf]\n"
83 " --viewport width height : Set the viewport.\n"
345 SkISize viewport; local
346 viewport.setEmpty();
434 } else if (0 == strcmp(*argv, "--viewport")) {
437 SkDebugf("Missing width for --viewport\n");
441 viewport.fWidth = atoi(*argv);
444 SkDebugf("Missing height for --viewport\n");
448 viewport.fHeight = atoi(*argv)
    [all...]
bench_pictures_main.cpp 129 " [--viewport width height][--scale sf]\n"
186 " --viewport width height : Set the viewport.\n"
298 SkISize viewport; local
299 viewport.setEmpty();
435 } else if (0 == strcmp(*argv, "--viewport")) {
438 gLogger.logError("Missing width for --viewport\n");
441 viewport.fWidth = atoi(*argv);
444 gLogger.logError("Missing height for --viewport\n");
447 viewport.fHeight = atoi(*argv)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
Surface.cpp 216 D3DVIEWPORT9 viewport = {0, 0, mWidth, mHeight, 0.0f, 1.0f}; local
217 device->SetViewport(&viewport);
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TransferQueue.h 45 GLint viewport[4]; member in struct:WebCore::GLState
ShaderProgram.cpp 498 //// viewport ////
511 // the GL viewport can save all the trouble of re-position from screenRect
707 IntRect viewport(m_visibleContentRect.fLeft - margin, m_visibleContentRect.fTop - margin,
710 viewport.intersect(rect);
711 return viewport;
948 int viewport[4]; local
    [all...]
  /frameworks/native/include/private/gui/
LayerState.h 119 Rect viewport; member in struct:android::DisplayState
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_context.cpp 175 int viewport[4] = {}; local
176 hooks->gl.glGetIntegerv(GL_VIEWPORT, viewport);
177 unsigned fbContentsSize = viewport[2] * viewport[3] * 4;
193 hooks->gl.glReadPixels(viewport[0], viewport[1], viewport[2], viewport[3],
203 *fbwidth = viewport[2];
204 *fbheight = viewport[3]
    [all...]
  /external/skia/src/gpu/gl/
GrGpuGL_program.cpp 89 const GrGLIRect& viewport = rt->getViewport(); local
90 viewportSize.set(viewport.fWidth, viewport.fHeight);
GrGpuGL.cpp 544 GrGLIRect viewport; local
545 viewport.fLeft = 0;
546 viewport.fBottom = 0;
547 viewport.fWidth = desc.fWidth;
548 viewport.fHeight = desc.fHeight;
551 (this, glDesc, viewport));
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGSVGElement.cpp 130 FloatRect SVGSVGElement::viewport() const function in class:WebCore::SVGSVGElement
575 // Element may not be in the document, pretend we're outermost for viewport(), getCTM(), etc.
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.h 153 Rect viewport; member in struct:android::SurfaceFlinger::DisplayDeviceState
  /external/webkit/Tools/EWebLauncher/
main.c 148 } Viewport;
159 Viewport viewport; member in struct:_ELauncher
266 * This is en example function to adjust viewport via viewport tag's arguments.
267 * Application can invoke this function in order to adjust viewport tag when it is required.
275 ewk_view_fixed_layout_size_set(app->browser, app->viewport.w, app->viewport.h);
276 ewk_view_zoom_set(app->browser, app->viewport.initScale, 0, 0);
277 if (!ewk_view_zoom_range_set(app->browser, app->viewport.minScale, app->viewport.maxScale)
    [all...]
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 97 // Viewport extremes. See mCurrentViewport for a discussion of the viewport.
104 * The current viewport. This rectangle represents the currently visible chart domain
653 * This is the active focal point in terms of the viewport. Could be a local
700 * Ensures that current viewport is inside the viewport extremes defined by {@link #AXIS_X_MIN},
739 // Scrolling uses math based on the viewport (as opposed to math using pixels).
741 * Pixel offset is the offset in screen pixels, while viewport offset is the
742 * offset within the current viewport. For additional information on surface sizes
744 * additional information about the viewport, see the comments fo
1134 private RectF viewport; field in class:InteractiveLineGraphView.SavedState
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 1161 void GraphicsContext3D::viewport(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height) function in class:WebCore::GraphicsContext3D
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.cpp 1632 D3DVIEWPORT9 viewport; local
1694 GLint viewport = programObject->getDxViewportLocation(); local
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.cpp 451 m_context->viewport(0, 0, canvas()->width(), canvas()->height());
3857 void WebGLRenderingContext::viewport(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height) function in class:WebCore::__anon17757::WebGLRenderingContext
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp 468 return qobject_cast<QGLWidget*>(scrollArea->viewport());
1442 void GraphicsContext3D::viewport(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height) function in class:WebCore::GraphicsContext3D
    [all...]
  /frameworks/native/opengl/libagl/
context.h 484 VIEWPORT = 0x04,
497 // viewport transformation
618 viewport_t viewport; member in struct:android::gl::ogles_context_t
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmImp.cpp 2234 GLint viewport[4]; local
    [all...]
  /frameworks/base/services/input/
InputReader.cpp 207 const DisplayViewport& viewport = external ? mExternalDisplay : mInternalDisplay; local
208 if (viewport.displayId >= 0) {
209 *outViewport = viewport;
215 void InputReaderConfiguration::setDisplayInfo(bool external, const DisplayViewport& viewport) {
217 v = viewport;
    [all...]
  /prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /prebuilts/devtools/tools/lib/
hierarchyviewer2lib.jar 

Completed in 1322 milliseconds

1 2