Searched defs:surfaces (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DGLThreadManager.java34 * GLThreadManager handles the thread used for rendering into the configured output surfaces.
62 public final Collection<Pair<Surface, Size>> surfaces; field in class:GLThreadManager.ConfigureHolder
66 Size>> surfaces, CaptureCollector collector) {
68 this.surfaces = surfaces;
89 mTextureRenderer.configureSurfaces(configure.surfaces);
185 * Queue a new call to draw into the surfaces specified in the next available preview
204 * Configure the GL renderer for the given set of output surfaces, and block until
207 * @param surfaces a collection of pairs of {@link android.view.Surface}s and their
211 public void setConfigurationAndWait(Collection<Pair<Surface, Size>> surfaces, argument
65 ConfigureHolder(ConditionVariable condition, Collection<Pair<Surface, Size>> surfaces, CaptureCollector collector) argument
[all...]
H A DLegacyCameraDevice.java236 * @return {@code true} if the surfaces uses {@link ImageFormat#YUV_420_888} or a compatible
277 * Configure the device with a set of output surfaces.
283 * @param outputs a list of surfaces to set.
377 // Make sure that there all requests have at least 1 surface; all surfaces are non-null
391 " device with valid surfaces before submitting requests");
608 static List<Long> getSurfaceIds(Collection<Surface> surfaces) { argument
609 if (surfaces == null) {
610 throw new NullPointerException("Null argument surfaces");
613 for (Surface s : surfaces) {
H A DRequestThreadManager.java123 public final Collection<Pair<Surface, Size>> surfaces; field in class:RequestThreadManager.ConfigureHolder
126 Size>> surfaces) {
128 this.surfaces = surfaces;
315 "Preview capture called with no preview surfaces configured.");
327 String outputsStr = outputs == null ? "null" : (outputs.size() + " surfaces");
499 private void resetJpegSurfaceFormats(Collection<Surface> surfaces) { argument
500 if (!USE_BLOB_FORMAT_OVERRIDE || surfaces == null) {
503 for(Surface s : surfaces) {
529 * surfaces
125 ConfigureHolder(ConditionVariable condition, Collection<Pair<Surface, Size>> surfaces) argument
[all...]
H A DSurfaceTextureRenderer.java449 private void configureEGLOutputSurfaces(Collection<EGLSurfaceHolder> surfaces) { argument
450 if (surfaces == null || surfaces.size() == 0) {
456 for (EGLSurfaceHolder holder : surfaces) {
463 private void configureEGLPbufferSurfaces(Collection<EGLSurfaceHolder> surfaces) { argument
464 if (surfaces == null || surfaces.size() == 0) {
469 for (EGLSurfaceHolder holder : surfaces) {
613 * @param surfaces a {@link Collection} of surfaces
615 configureSurfaces(Collection<Pair<Surface, Size>> surfaces) argument
[all...]

Completed in 55 milliseconds