HomeSort by relevance Sort by last modified time
    Searched refs:Surface (Results 176 - 200 of 340) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/av/services/camera/libcameraservice/common/
Camera2ClientBase.cpp 25 #include <gui/Surface.h>
26 #include <gui/Surface.h>
  /frameworks/base/core/jni/
android_view_TextureView.cpp 26 #include <gui/Surface.h>
100 jobject surface) {
102 sp<IGraphicBufferProducer> producer(SurfaceTexture_getProducer(env, surface));
103 sp<ANativeWindow> window = new Surface(producer, true);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
SurfaceTargetFilter.java 36 import android.view.Surface;
53 /** Required. Sets the destination surface for this node. This assumes that
54 * higher-level code is ensuring that the surface is valid, and properly
55 * updates Surface parameters if they change.
57 @GenerateFinalPort(name = "surface")
58 private Surface mSurface;
60 /** Required. Width of the output surface */
64 /** Required. Height of the output surface */
98 // Make sure we have a Surface
100 throw new RuntimeException("NULL Surface passed to SurfaceTargetFilter")
    [all...]
  /frameworks/base/services/java/com/android/server/display/
LocalDisplayAdapter.java 27 import android.view.Surface;
34 * A display adapter for the local displays managed by Surface Flinger.
167 mInfo.rotation = Surface.ROTATION_270;
WifiDisplayAdapter.java 44 import android.view.Surface;
63 * the interactions between Media Server, Surface Flinger and the Display Manager Service.
377 Surface surface, int width, int height, int flags) {
401 refreshRate, deviceFlags, address, surface);
598 public void onDisplayConnected(WifiDisplay display, Surface surface,
602 addDisplayDeviceLocked(display, surface, width, height, flags);
660 private Surface mSurface;
665 Surface surface)
    [all...]
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
DisplaySourceService.java 33 import android.view.Surface;
197 Surface surface = codec.createInputSurface(); local
201 DISPLAY_NAME, mWidth, mHeight, mDensityDpi, surface, 0);
  /frameworks/native/opengl/tools/glgen/
gen 41 echo "package android.view;" > out/android/view/Surface.java
42 echo "public interface Surface {}" >> out/android/view/Surface.java
44 echo "public interface SurfaceHolder { Surface getSurface(); }" >> out/android/view/SurfaceHolder.java
  /frameworks/native/opengl/tools/glgen/stubs/egl/
EGL14Header.java-if 22 import android.view.Surface;
  /frameworks/native/services/surfaceflinger/tests/
Transaction_test.cpp 22 #include <gui/Surface.h>
31 // Fill an RGBA_8888 formatted surface with a single color.
35 sp<Surface> s = sc->getSurface();
105 // Background surface
107 String8("BG Test Surface"), displayWidth, displayHeight,
113 // Foreground surface
115 String8("FG Test Surface"), 64, 64, PIXEL_FORMAT_RGBA_8888, 0);
121 // Synchronization surface
123 String8("Sync Test Surface"), 1, 1, PIXEL_FORMAT_RGBA_8888, 0);
155 // Since the sync surface is in synchronous mode (i.e. double buffered
    [all...]
  /hardware/libhardware/tests/camera2/
CameraStreamFixture.h 25 #include <gui/Surface.h>
168 mNativeWindow = new Surface(bq);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
CameraFormatsActivity.java 38 import android.view.Surface;
192 public void onSurfaceTextureAvailable(SurfaceTexture surface,
194 mPreviewTexture = surface;
202 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) {
206 public boolean onSurfaceTextureDestroyed(SurfaceTexture surface) {
210 public void onSurfaceTextureUpdated(SurfaceTexture surface) {
346 case Surface.ROTATION_0: degrees = 0; break;
347 case Surface.ROTATION_90: degrees = 90; break;
348 case Surface.ROTATION_180: degrees = 180; break;
349 case Surface.ROTATION_270: degrees = 270; break
    [all...]
  /frameworks/base/core/java/android/view/
SurfaceView.java 42 * Provides a dedicated drawing surface embedded inside of a view hierarchy.
43 * You can control the format of this surface and, if you like, its size; the
44 * SurfaceView takes care of placing the surface at the correct location on the
47 * <p>The surface is Z ordered so that it is behind the window holding its
49 * surface to be displayed. The view hierarchy will take care of correctly
50 * compositing with the Surface any siblings of the SurfaceView that would
52 * buttons on top of the Surface, though note however that it can have an
54 * each time the Surface changes.
56 * <p> The transparent region that makes the surface visible is based on the
59 * view may not be properly composited with the surface
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Util.java 46 import android.view.Surface;
330 case Surface.ROTATION_0: return 0;
331 case Surface.ROTATION_90: return 90;
332 case Surface.ROTATION_180: return 180;
333 case Surface.ROTATION_270: return 270;
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 48 import android.view.Surface;
407 case Surface.ROTATION_0: return 0;
408 case Surface.ROTATION_90: return 90;
409 case Surface.ROTATION_180: return 180;
410 case Surface.ROTATION_270: return 270;
427 if (orientation == Surface.ROTATION_0 || orientation == Surface.ROTATION_180) {
503 // wrong size of preview surface. When we change the preview size, the
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
OverlayDisplayWindow.java 37 import android.view.Surface;
95 public void onWindowCreated(Surface surface);
395 mListener.onWindowCreated(new Surface(surfaceTexture));
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Texture.h 25 class Surface;
160 virtual void bindTexImage(egl::Surface *surface);
189 egl::Surface *mSurface;
  /frameworks/av/cmds/stagefright/
codec.cpp 39 #include <gui/Surface.h>
46 "\t\t[-S] allocate buffers from a surface\n",
72 const android::sp<android::Surface> &surface) {
124 format, isVideo ? surface : NULL,
378 sp<Surface> surface; local
394 String8("A Surface"),
408 surface = control->getSurface();
409 CHECK(surface != NULL)
    [all...]
  /frameworks/av/libvideoeditor/lvpp/
NativeWindowRenderer.cpp 24 #include <gui/Surface.h>
319 sp<Surface> STC = input->mSTC;
573 mSTC = new Surface(bq);
  /frameworks/base/core/tests/coretests/src/android/hardware/display/
VirtualDisplayTest.java 37 import android.view.Surface;
73 private Surface mSurface;
261 Surface.ROTATION_0, display.getRotation());
  /frameworks/base/media/jni/
android_media_MediaRecorder.cpp 21 #include <gui/Surface.h>
50 jfieldID surface; member in struct:fields_t
108 static sp<Surface> get_surface(JNIEnv* env, jobject clazz)
317 jobject surface = env->GetObjectField(thiz, fields.surface); local
318 if (surface != NULL) {
319 const sp<Surface> native_surface = get_surface(env, surface);
322 // the preview surface becomes unavailable
324 ALOGE("Application lost the surface");
405 jclass surface = env->FindClass("android\/view\/Surface"); local
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
MediaSource.java 41 import android.view.Surface;
500 Surface surface = new Surface(mSurfaceTexture); local
501 mMediaPlayer.setSurface(surface);
502 surface.release();
  /external/chromium_org/ui/gl/
surface_jni_headers.target.darwin-arm.mk 22 @echo "Gyp action: Generating JNI bindings from $(PWD)/prebuilts/sdk/17/android.jar/android/view/Surface.class ($@)"
23 $(hide)cd $(gyp_local_path)/ui/gl; mkdir -p $(gyp_shared_intermediate_dir)/ui/gl/jni; ../../base/android/jni_generator/jni_generator.py -j "$(PWD)/prebuilts/sdk/17/android.jar" --input_file android/view/Surface.class --output_dir "$(gyp_shared_intermediate_dir)/ui/gl/jni" --optimize_generation 0
surface_jni_headers.target.darwin-mips.mk 22 @echo "Gyp action: Generating JNI bindings from $(PWD)/prebuilts/sdk/17/android.jar/android/view/Surface.class ($@)"
23 $(hide)cd $(gyp_local_path)/ui/gl; mkdir -p $(gyp_shared_intermediate_dir)/ui/gl/jni; ../../base/android/jni_generator/jni_generator.py -j "$(PWD)/prebuilts/sdk/17/android.jar" --input_file android/view/Surface.class --output_dir "$(gyp_shared_intermediate_dir)/ui/gl/jni" --optimize_generation 0
surface_jni_headers.target.darwin-x86.mk 22 @echo "Gyp action: Generating JNI bindings from $(PWD)/prebuilts/sdk/17/android.jar/android/view/Surface.class ($@)"
23 $(hide)cd $(gyp_local_path)/ui/gl; mkdir -p $(gyp_shared_intermediate_dir)/ui/gl/jni; ../../base/android/jni_generator/jni_generator.py -j "$(PWD)/prebuilts/sdk/17/android.jar" --input_file android/view/Surface.class --output_dir "$(gyp_shared_intermediate_dir)/ui/gl/jni" --optimize_generation 0
surface_jni_headers.target.linux-arm.mk 22 @echo "Gyp action: Generating JNI bindings from $(PWD)/prebuilts/sdk/17/android.jar/android/view/Surface.class ($@)"
23 $(hide)cd $(gyp_local_path)/ui/gl; mkdir -p $(gyp_shared_intermediate_dir)/ui/gl/jni; ../../base/android/jni_generator/jni_generator.py -j "$(PWD)/prebuilts/sdk/17/android.jar" --input_file android/view/Surface.class --output_dir "$(gyp_shared_intermediate_dir)/ui/gl/jni" --optimize_generation 0

Completed in 1428 milliseconds

1 2 3 4 5 6 78 91011>>