HomeSort by relevance Sort by last modified time
    Searched defs:nativeWindow (Results 1 - 18 of 18) sorted by null

  /external/swiftshader/src/Main/
FrameBufferAndroid.hpp 42 ANativeWindow *nativeWindow;
  /cts/tests/openglperf2/jni/reference/
GLReference.cpp 35 ANativeWindow* nativeWindow = ANativeWindow_fromSurface(env, surface);
36 ReferenceRenderer* renderer = new ReferenceRenderer(nativeWindow);
62 ANativeWindow_release(nativeWindow);
  /hardware/interfaces/renderscript/1.0/vts/functional/
VtsMiscellaneousTests.cpp 142 * NativeWindow (Surface) is retrieved from one allocation and set to the other.
174 NativeWindow nativeWindow = context->allocationGetNativeWindow(allocationRecv);
175 ASSERT_NE(NativeWindow(0), nativeWindow);
177 ((ANativeWindow *)nativeWindow)->incStrong(nullptr);
178 native_window_api_connect((ANativeWindow*)nativeWindow,
181 context->allocationSetNativeWindow(allocationSend, nativeWindow);
236 NativeWindow nativeWindow1 = context->allocationGetNativeWindow(allocationRecv1);
237 ASSERT_NE(NativeWindow(0), nativeWindow1)
    [all...]
  /frameworks/base/core/jni/
android_view_TextureView.cpp 51 jfieldID nativeWindow;
122 SET_LONG(textureView, gTextureViewClassInfo.nativeWindow, jlong(window.get()));
127 ANativeWindow* nativeWindow = (ANativeWindow*)
128 GET_LONG(textureView, gTextureViewClassInfo.nativeWindow);
130 if (nativeWindow) {
131 sp<ANativeWindow> window(nativeWindow);
133 SET_LONG(textureView, gTextureViewClassInfo.nativeWindow, 0);
138 jlong nativeWindow, jobject canvas, jobject dirtyRect) {
140 if (!nativeWindow) {
156 sp<ANativeWindow> window((ANativeWindow*) nativeWindow);
    [all...]
android_app_NativeActivity.cpp 124 nativeWindow = NULL;
156 nativeWindow = android_view_Surface_getNativeWindow(env, _surface);
158 nativeWindow = NULL;
171 sp<ANativeWindow> nativeWindow;
543 if (code->nativeWindow != NULL && code->callbacks.onNativeWindowCreated != NULL) {
545 code->nativeWindow.get());
565 sp<ANativeWindow> oldNativeWindow = code->nativeWindow;
567 if (oldNativeWindow != code->nativeWindow) {
572 if (code->nativeWindow != NULL) {
575 code->nativeWindow.get())
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
OGLES2HelloAPI_LinuxX11.cpp 144 @Output nativeWindow Native window type to create
148 bool CreateNativeWindow(Display* nativeDisplay, Window* nativeWindow)
181 *nativeWindow =XCreateWindow(nativeDisplay, // The display used to create the window
195 XMapWindow(nativeDisplay, *nativeWindow);
198 XStoreName(nativeDisplay, *nativeWindow, APPLICATION_NAME);
202 XSetWMProtocols(nativeDisplay, *nativeWindow, &windowManagerDelete , 1);
292 @Input nativeWindow A native window that's been created
299 bool CreateEGLSurface( Window nativeWindow, EGLDisplay eglDisplay, EGLConfig eglConfig, EGLSurface& eglSurface)
310 eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, (EGLNativeWindowType)nativeWindow, NULL);
325 @Input nativeWindow A native window, used to display error messages
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodecListOverrides.cpp 153 const sp<Surface> nativeWindow;
157 err = codec->configure(format, nativeWindow, crypto, flags);
ACodec.cpp 726 ANativeWindow *nativeWindow = surface.get();
742 nativeWindow, &usageBits, !storingMetadataInDecodedBuffers());
757 err = nativeWindow->query(
758 nativeWindow, NATIVE_WINDOW_MIN_UNDEQUEUED_BUFFERS,
776 err = native_window_set_buffer_count(nativeWindow, buffers.size());
813 err = nativeWindow->cancelBuffer(
814 nativeWindow, info.mGraphicBuffer->getNativeBuffer(), info.mFenceFd);
833 mNativeWindow = nativeWindow;
    [all...]
  /frameworks/wilhelm/src/android/
MediaPlayer_to_android.cpp 461 ANativeWindow *nativeWindow = (ANativeWindow *)
464 assert(nativeWindow != NULL);
465 result = android_Player_setNativeWindow(mp, nativeWindow);
718 * nativeWindow can be NULL, but if NULL it is treated as an error
720 SLresult android_Player_setNativeWindow(CMediaPlayer *mp, ANativeWindow *nativeWindow)
724 if (nativeWindow == NULL) {
732 err = (*nativeWindow->query)(nativeWindow, NATIVE_WINDOW_CONCRETE_TYPE, &value);
735 "errno %d", nativeWindow, err);
742 static_cast<android::Surface *>(nativeWindow));
    [all...]
  /external/deqp/framework/egl/
egluGLContextFactory.cpp 157 NativeWindow* m_window;
228 typedef std::pair<NativeWindow*, EGLSurface> WindowSurfacePair;
236 NativeWindow* nativeWindow = DE_NULL;
240 nativeWindow = windowFactory->createWindow(nativeDisplay, eglDisplay, eglConfig, &attribList[0], WindowParams(width, height, visibility));
244 surface = eglu::createWindowSurface(*nativeDisplay, *nativeWindow, eglDisplay, eglConfig, attribList);
248 delete nativeWindow;
252 return WindowSurfacePair(nativeWindow, surface);
  /frameworks/wilhelm/tests/sandbox/
xaplay.c 30 #include "nativewindow.h"
372 ANativeWindow *nativeWindow;
426 nativeWindow = getNativeWindow();
429 locND.hWindow = nativeWindow;
441 &audioSnk, nativeWindow != NULL ? &imageVideoSink : NULL, NULL, NULL, abq ? 4 : 3, ids,
    [all...]
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderDefs.h 157 void* nativeWindow;
  /cts/tests/tests/media/libmediandkjni/
native-media-jni.cpp     [all...]
  /device/generic/goldfish-opengl/system/egl/
egl.cpp 363 ANativeWindow* nativeWindow;
372 nativeWindow(window),
377 nativeWindow->common.incRef(&nativeWindow->common);
383 if (nativeWindow->dequeueBuffer_DEPRECATED(nativeWindow, &buffer) != NO_ERROR) {
390 nativeWindow->query(nativeWindow, NATIVE_WINDOW_WIDTH, &nativeWidth);
391 nativeWindow->query(nativeWindow, NATIVE_WINDOW_HEIGHT, &nativeHeight)
    [all...]
  /frameworks/native/opengl/libagl/
egl.cpp 264 ANativeWindow* nativeWindow;
366 nativeWindow(window), buffer(0), previousBuffer(0), bits(NULL)
372 nativeWindow->common.incRef(&nativeWindow->common);
373 nativeWindow->query(nativeWindow, NATIVE_WINDOW_WIDTH, &width);
374 nativeWindow->query(nativeWindow, NATIVE_WINDOW_HEIGHT, &height);
384 nativeWindow->common.decRef(&nativeWindow->common)
    [all...]
  /frameworks/native/services/surfaceflinger/tests/unittests/
DisplayTransactionTest.cpp 127 sp<mock::NativeWindow> mNativeWindow;
195 mNativeWindow = new mock::NativeWindow();
    [all...]
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.cpp     [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.1.0_r7-robolectric-0.jar 

Completed in 482 milliseconds