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

  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
SurfaceViewRenderer.java 90 // |layoutSize|/|surfaceSize| is the actual current layout/surface size. They are updated in
95 private final Point surfaceSize = new Point();
386 surfaceSize.x = 0;
387 surfaceSize.y = 0;
400 surfaceSize.x = width;
401 surfaceSize.y = height;
446 return layoutSize.equals(desiredLayoutSize) && surfaceSize.equals(layoutSize);
481 if (eglBase.surfaceWidth() != surfaceSize.x || eglBase.surfaceHeight() != surfaceSize.y) {
509 drawer.drawYuv(yuvTextures, texMatrix, 0, 0, surfaceSize.x, surfaceSize.y)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/utils/
SurfaceUtils.java 170 Size surfaceSize = SurfaceUtils.getSurfaceSize(surface);
171 if (!highSpeedSizes.contains(surfaceSize)) {
172 throw new IllegalArgumentException("Surface size " + surfaceSize.toString() + " is"
  /frameworks/base/core/java/android/hardware/camera2/params/
OutputConfiguration.java 228 * @param surfaceSize Size for the deferred surface.
234 public <T> OutputConfiguration(@NonNull Size surfaceSize, @NonNull Class<T> klass) {
235 checkNotNull(klass, "surfaceSize must not be null");
249 mConfiguredSize = surfaceSize;
295 Size surfaceSize = SurfaceUtils.getSurfaceSize(surface);
296 if (!surfaceSize.equals(mConfiguredSize)) {
297 Log.w(TAG, "Deferred surface size " + surfaceSize +
StreamConfigurationMap.java 404 Size surfaceSize = SurfaceUtils.getSurfaceSize(surface);
423 if (config.getSize().equals(surfaceSize)) {
    [all...]
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 65 int[] surfaceSize = { EGL10.EGL_WIDTH, 1, EGL10.EGL_HEIGHT, 1, EGL10.EGL_NONE };
66 mEGLSurface = egl.eglCreatePbufferSurface(mEGLDisplay, mEGLConfig, surfaceSize);
  /external/deqp/modules/egl/
teglColorClearCase.cpp 172 const tcu::IVec2 surfaceSize = eglu::getSurfaceSize(egl, display, surface);
173 const int width = surfaceSize.x();
174 const int height = surfaceSize.y();
333 const tcu::IVec2 surfaceSize = eglu::getSurfaceSize(egl, display, surface);
334 const int width = surfaceSize.x();
335 const int height = surfaceSize.y();
teglNativeCoordMappingTests.cpp 374 const tcu::IVec2 surfaceSize = eglu::getSurfaceSize(egl, display, *surface);
386 clear(gl, tcu::Vec4(0.0f, 0.0f, 0.0f, 1.0f), 0, 0, surfaceSize.x(), surfaceSize.y());
389 render(gl, program, surfaceSize.x(), surfaceSize.y(), rectX, rectY, rectW, rectH);
  /frameworks/base/core/java/android/hardware/camera2/legacy/
SurfaceTextureRenderer.java 639 Size surfaceSize = p.second;
644 holder.width = surfaceSize.getWidth();
645 holder.height = surfaceSize.getHeight();

Completed in 241 milliseconds