Searched refs:window (Results 1 - 25 of 230) sorted by relevance

12345678910

/frameworks/base/core/tests/coretests/src/android/database/
H A DCursorWindowTest.java39 CursorWindow window = new CursorWindow("MyWindow");
40 assertEquals("MyWindow", window.getName());
41 assertEquals(0, window.getStartPosition());
42 window.close();
47 CursorWindow window = new CursorWindow("");
48 assertEquals("<unnamed>", window.getName());
49 assertEquals(0, window.getStartPosition());
50 window.close();
55 CursorWindow window = new CursorWindow(null);
56 assertEquals("<unnamed>", window
77 doTestValues(CursorWindow window) argument
[all...]
/frameworks/native/libs/nativewindow/include/system/
H A Dwindow.h21 * There is an old copy of this file in system/core/include/system/window.h, which exists only
23 * But there are binaries out there as well, so this version of window.h must stay binary
44 // system/window.h is a superset of the vndk
45 #include <vndk/window.h>
88 /* see ANativeWindowQuery in vndk/window.h */
92 * to the window compositor. The query sets the returned 'value' argument
93 * to 1 if the ANativeWindow DOES send queued buffers directly to the window
94 * compositor and 0 if the buffers do not go directly to the window
117 * dimensions of the window buffers irrespective of the
118 * NATIVE_WINDOW_SET_BUFFERS_DIMENSIONS call and match the native window
566 native_window_set_usage( struct ANativeWindow* window, int usage) argument
604 native_window_set_crop( struct ANativeWindow* window, android_native_rect_t const * crop) argument
625 native_window_set_post_transform_crop( struct ANativeWindow* window, android_native_rect_t const * crop) argument
643 native_window_set_active_rect( struct ANativeWindow* window, android_native_rect_t const * active_rect) argument
654 native_window_set_buffer_count( struct ANativeWindow* window, size_t bufferCount) argument
674 native_window_set_buffers_geometry( struct ANativeWindow* window, int w, int h, int format) argument
695 native_window_set_buffers_dimensions( struct ANativeWindow* window, int w, int h) argument
720 native_window_set_buffers_user_dimensions( struct ANativeWindow* window, int w, int h) argument
734 native_window_set_buffers_format( struct ANativeWindow* window, int format) argument
753 native_window_set_buffers_data_space( struct ANativeWindow* window, android_dataspace_t dataSpace) argument
766 native_window_set_buffers_transform( struct ANativeWindow* window, int transform) argument
783 native_window_set_buffers_sticky_transform( struct ANativeWindow* window, int transform) argument
801 native_window_set_buffers_timestamp( struct ANativeWindow* window, int64_t timestamp) argument
814 native_window_set_scaling_mode( struct ANativeWindow* window, int mode) argument
828 native_window_api_connect( struct ANativeWindow* window, int api) argument
840 native_window_api_disconnect( struct ANativeWindow* window, int api) argument
861 native_window_set_sideband_stream( struct ANativeWindow* window, native_handle_t* sidebandHandle) argument
885 native_window_set_surface_damage( struct ANativeWindow* window, const android_native_rect_t* rects, size_t numRects) argument
897 native_window_set_shared_buffer_mode( struct ANativeWindow* window, bool sharedBufferMode) argument
909 native_window_set_auto_refresh( struct ANativeWindow* window, bool autoRefresh) argument
916 native_window_get_refresh_cycle_duration( struct ANativeWindow* window, int64_t* outRefreshDuration) argument
924 native_window_get_next_frame_id( struct ANativeWindow* window, uint64_t* frameId) argument
930 native_window_enable_frame_timestamps( struct ANativeWindow* window, bool enable) argument
937 native_window_get_compositor_timing( struct ANativeWindow* window, int64_t* compositeDeadline, int64_t* compositeInterval, int64_t* compositeToPresentLatency) argument
946 native_window_get_frame_timestamps( struct ANativeWindow* window, uint64_t frameId, int64_t* outRequestedPresentTime, int64_t* outAcquireTime, int64_t* outLatchTime, int64_t* outFirstRefreshStartTime, int64_t* outLastRefreshStartTime, int64_t* outGpuCompositionDoneTime, int64_t* outDisplayPresentTime, int64_t* outDequeueReadyTime, int64_t* outReleaseTime) argument
961 native_window_get_wide_color_support( struct ANativeWindow* window, bool* outSupport) argument
967 native_window_get_hdr_support(struct ANativeWindow* window, bool* outSupport) argument
[all...]
/frameworks/native/libs/nativewindow/
H A DANativeWindow.cpp22 // from nativewindow/includes/system/window.h
23 // (not to be confused with the compatibility-only window.h from system/core/includes)
24 #include <system/window.h>
32 static int32_t query(ANativeWindow* window, int what) { argument
34 int res = window->query(window, what, &value);
42 void ANativeWindow_acquire(ANativeWindow* window) { argument
44 window->incStrong((void*)ANativeWindow_acquire);
47 void ANativeWindow_release(ANativeWindow* window) { argument
49 window
52 ANativeWindow_getWidth(ANativeWindow* window) argument
56 ANativeWindow_getHeight(ANativeWindow* window) argument
60 ANativeWindow_getFormat(ANativeWindow* window) argument
64 ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, int32_t height, int32_t format) argument
80 ANativeWindow_lock(ANativeWindow* window, ANativeWindow_Buffer* outBuffer, ARect* inOutDirtyBounds) argument
85 ANativeWindow_unlockAndPost(ANativeWindow* window) argument
89 ANativeWindow_setBuffersTransform(ANativeWindow* window, int32_t transform) argument
114 ANativeWindow_OemStorageSet(ANativeWindow* window, uint32_t slot, intptr_t value) argument
122 ANativeWindow_OemStorageGet(ANativeWindow* window, uint32_t slot, intptr_t* value) argument
131 ANativeWindow_setSwapInterval(ANativeWindow* window, int interval) argument
135 ANativeWindow_query(const ANativeWindow* window, ANativeWindowQuery what, int* value) argument
162 ANativeWindow_queryf(const ANativeWindow* window, ANativeWindowQuery what, float* value) argument
182 ANativeWindow_dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer, int* fenceFd) argument
186 ANativeWindow_queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) argument
190 ANativeWindow_cancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) argument
194 ANativeWindow_setUsage(ANativeWindow* window, uint64_t usage) argument
199 ANativeWindow_setBufferCount(ANativeWindow* window, size_t bufferCount) argument
203 ANativeWindow_setBuffersDimensions(ANativeWindow* window, uint32_t w, uint32_t h) argument
207 ANativeWindow_setBuffersFormat(ANativeWindow* window, int format) argument
211 ANativeWindow_setBuffersTimestamp(ANativeWindow* window, int64_t timestamp) argument
215 ANativeWindow_setBufferDataSpace(ANativeWindow* window, android_dataspace_t dataSpace) argument
219 ANativeWindow_setSharedBufferMode(ANativeWindow* window, bool sharedBufferMode) argument
223 ANativeWindow_setAutoRefresh(ANativeWindow* window, bool autoRefresh) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTaskSnapshotCacheTest.java51 final WindowState window = createWindow(null, FIRST_APPLICATION_WINDOW, "window");
52 mCache.putSnapshot(window.getTask(), createSnapshot());
53 assertNotNull(mCache.getSnapshot(window.getTask().mTaskId, 0 /* userId */,
55 mCache.onAppRemoved(window.mAppToken);
56 assertNull(mCache.getSnapshot(window.getTask().mTaskId, 0 /* userId */,
62 final WindowState window = createWindow(null, FIRST_APPLICATION_WINDOW, "window");
63 mCache.putSnapshot(window.getTask(), createSnapshot());
64 assertNotNull(mCache.getSnapshot(window
[all...]
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
H A DTransitionHelperApi21.java52 public static Object getSharedElementEnterTransition(Window window) { argument
53 return window.getSharedElementEnterTransition();
56 public static void setSharedElementEnterTransition(Window window, Object transition) { argument
57 window.setSharedElementEnterTransition((Transition) transition);
60 public static Object getSharedElementReturnTransition(Window window) { argument
61 return window.getSharedElementReturnTransition();
64 public static void setSharedElementReturnTransition(Window window, Object transition) { argument
65 window.setSharedElementReturnTransition((Transition) transition);
68 public static Object getSharedElementExitTransition(Window window) { argument
69 return window
72 getSharedElementReenterTransition(Window window) argument
76 getEnterTransition(Window window) argument
80 setEnterTransition(Window window, Object transition) argument
84 getReturnTransition(Window window) argument
88 setReturnTransition(Window window, Object transition) argument
92 getExitTransition(Window window) argument
96 getReenterTransition(Window window) argument
[all...]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DSystemBarHelper.java77 final Window window = dialog.getWindow();
78 temporarilyDisableDialogFocus(window);
79 addVisibilityFlag(window, DIALOG_IMMERSIVE_FLAGS);
80 addImmersiveFlagsToDecorView(window, DIALOG_IMMERSIVE_FLAGS);
84 window.setNavigationBarColor(0);
85 window.setStatusBarColor(0);
98 public static void hideSystemBars(final Window window) { argument
100 addVisibilityFlag(window, DEFAULT_IMMERSIVE_FLAGS);
101 addImmersiveFlagsToDecorView(window, DEFAULT_IMMERSIVE_FLAGS);
105 window
124 showSystemBars(final Window window, final Context context) argument
155 addVisibilityFlag(final Window window, final int flag) argument
178 removeVisibilityFlag(final Window window, final int flag) argument
186 setBackButtonVisible(final Window window, final boolean visible) argument
221 addImmersiveFlagsToDecorView(final Window window, final int vis) argument
231 removeImmersiveFlagsFromDecorView(final Window window, final int vis) argument
240 getDecorView(Window window, OnDecorViewInstalledListener callback) argument
271 getDecorView(Window window, OnDecorViewInstalledListener callback, int retries) argument
289 temporarilyDisableDialogFocus(final Window window) argument
[all...]
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl33 * System private per-application interface to the window manager.
38 int add(IWindow window, int seq, in WindowManager.LayoutParams attrs,
41 int addToDisplay(IWindow window, int seq, in WindowManager.LayoutParams attrs,
44 int addWithoutInputChannel(IWindow window, int seq, in WindowManager.LayoutParams attrs,
46 int addToDisplayWithoutInputChannel(IWindow window, int seq, in WindowManager.LayoutParams attrs,
49 void remove(IWindow window);
52 * Change the parameters of a window. You supply the
53 * new parameters, it returns the new frame of the window on screen (the
54 * position should be ignored) and surface of the window. The surface
55 * will be invalid if the window i
[all...]
H A DWindowInfo.java29 * This class represents information about a window from the
30 * window manager to another part of the system.
56 WindowInfo window = sPool.acquire();
57 if (window == null) {
58 window = new WindowInfo();
60 return window;
64 WindowInfo window = obtain();
65 window.type = other.type;
66 window.layer = other.layer;
67 window
[all...]
H A DFrameMetricsObserver.java48 FrameMetricsObserver(@NonNull Window window, @NonNull Looper looper, argument
60 mWindow = new WeakReference<>(window);
67 final Window window = mWindow.get();
68 if (window != null) {
69 mListener.onFrameMetricsAvailable(window, mFrameMetrics, dropCount);
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_mpeg2_get_scale_factors.cpp129 int32 window; local
156 for (window = 0; window < 3; window++)
158 scalefac->s[window][sfb] = scalefac_buffer[k];
178 for (window = 0; window < 3; window++)
180 scalefac->s[window][sfb] = scalefac_buffer[k];
H A Dpvmp3_mdct_18.cpp41 const int32 *window sine window used in the mdct, three types are allowed
133 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window) argument
199 vec[ i] = fxp_mac32_Q32(tmp, (vec[i+10]), window[ i]);
209 vec[ 6] = fxp_mac32_Q32(tmp, vec[16] << 1, window[ i]);
216 vec[ 7] = fxp_mac32_Q32(tmp, tmp4 << 1, window[ 7]);
218 vec[ 8] = fxp_mac32_Q32(tmp1, vec[17] << 1, window[ 8]);
223 vec[ 9] = fxp_mac32_Q32(tmp, vec[17] << 1, window[ 9]);
225 vec[17] = fxp_mac32_Q32(tmp1, vec[10] << 1, window[17]);
227 vec[16] = fxp_mac32_Q32(tmp2, vec[11] << 1, window[1
[all...]
H A Dpvmp3_get_scale_factors.cpp140 int32 window; local
154 for (window = 0; window < 3; window++)
156 scalefac->s[window][sfb] = getNbits(pMainData, slen[0][gr_info->scalefac_compress]);
161 for (window = 0; window < 3; window++)
163 scalefac->s[window][sfb] = getNbits(pMainData, slen[1][gr_info->scalefac_compress]);
173 for (window
[all...]
/frameworks/base/core/java/android/database/
H A DCrossProcessCursor.java25 * the cursor can provide a pre-filled window to use via {@link #getWindow} thereby
26 * obviating the need to copy the data to yet another cursor window.
30 * Returns a pre-filled window that contains the data within this cursor.
32 * In particular, the window contains the row indicated by {@link Cursor#getPosition}.
33 * The window's contents are automatically scrolled whenever the current
34 * row moved outside the range covered by the window.
37 * @return The pre-filled window, or null if none.
42 * Copies cursor data into the window.
44 * Clears the window and fills it with data beginning at the requested
46 * or the window run
61 fillWindow(int position, CursorWindow window) argument
[all...]
H A DCursorToBulkCursorAdaptor.java27 * then it is assumed to own the window. Otherwise, the adaptor provides a
28 * window to be filled and ensures it gets closed as needed during deactivation
49 * The cursor window that was filled by the cross process cursor in the
51 * This field is only ever non-null when the window has actually be filled.
146 d.window = mCursor.getWindow();
147 if (d.window != null) {
148 // Acquire a reference to the window because its reference count will be
150 d.window.acquireReference();
166 CursorWindow window = mCursor.getWindow();
167 if (window !
[all...]
H A DCrossProcessCursorWrapper.java46 public void fillWindow(int position, CursorWindow window) { argument
49 crossProcessCursor.fillWindow(position, window);
53 DatabaseUtils.cursorFillWindow(mCursor, position, window);
/frameworks/base/native/android/
H A Dnative_window_jni.cpp21 #include <system/window.h>
38 jobject ANativeWindow_toSurface(JNIEnv* env, ANativeWindow* window) { argument
39 if (window == NULL) {
42 sp<Surface> surface = static_cast<Surface*>(window);
/frameworks/native/libs/nativewindow/include/android/
H A Dnative_window.h24 * @brief API for accessing a native window.
40 * Legacy window pixel format names, kept for backwards compatibility.
55 * Transforms that can be applied to buffers as they are displayed to a window.
75 * Opaque type that provides access to a native window.
111 void ANativeWindow_acquire(ANativeWindow* window);
116 void ANativeWindow_release(ANativeWindow* window);
119 * Return the current width in pixels of the window surface.
123 int32_t ANativeWindow_getWidth(ANativeWindow* window);
126 * Return the current height in pixels of the window surface.
130 int32_t ANativeWindow_getHeight(ANativeWindow* window);
[all...]
/frameworks/native/libs/nativewindow/include/vndk/
H A Dwindow.h117 int ANativeWindow_OemStorageSet(ANativeWindow* window, uint32_t slot, intptr_t value);
128 int ANativeWindow_OemStorageGet(ANativeWindow* window, uint32_t slot, intptr_t* value);
136 int ANativeWindow_setSwapInterval(ANativeWindow* window, int interval);
165 * dimensions of the window buffers irrespective of the
166 * ANativeWindow_setBuffersDimensions() call and match the native window
224 * example, if the window is double-buffered, the age of any given buffer in
246 * hook used to retrieve information about the native window.
250 int ANativeWindow_query(const ANativeWindow* window, ANativeWindowQuery query, int* value);
251 int ANativeWindow_queryf(const ANativeWindow* window, ANativeWindowQuery query, float* value);
258 * The window hold
[all...]
/frameworks/native/libs/nativewindow/tests/
H A Dc_compatibility.c20 #include <vndk/window.h>
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
H A DSystemBarHelperTest.java91 final Window window = createWindowWithSystemUiVisibility(0x456);
92 SystemBarHelper.addVisibilityFlag(window, 0x1400);
96 window.getAttributes().systemUiVisibility);
103 final Window window = createWindowWithSystemUiVisibility(0x456);
104 SystemBarHelper.removeVisibilityFlag(window, 0x1400);
108 window.getAttributes().systemUiVisibility);
115 final Window window = createWindowWithSystemUiVisibility(0x456);
116 SystemBarHelper.hideSystemBars(window);
118 assertEquals("DEFAULT_IMMERSIVE_FLAGS should be added to window's systemUiVisibility",
120 window
[all...]
/frameworks/base/core/jni/
H A Dandroid_database_CursorWindow.cpp92 CursorWindow* window; local
93 status_t status = CursorWindow::create(name, cursorWindowSize, &window);
94 if (status || !window) {
100 LOG_WINDOW("nativeInitializeEmpty: window = %p", window);
101 return reinterpret_cast<jlong>(window);
107 CursorWindow* window; local
108 status_t status = CursorWindow::createFromParcel(parcel, &window);
109 if (status || !window) {
115 LOG_WINDOW("nativeInitializeFromBinder: numRows = %d, numColumns = %d, window
121 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
129 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
135 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
147 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
156 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
162 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
168 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
174 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
180 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
195 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
234 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
330 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
369 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
400 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
431 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
449 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
471 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
485 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
499 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr); local
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java84 public boolean performHapticFeedback(IWindow window, int effectId, boolean always) { argument
99 public boolean outOfMemory(IWindow window) throws RemoteException { argument
104 public void getDisplayFrame(IWindow window, Rect outDisplayFrame) { argument
124 public void setInsets(IWindow window, int touchable, Rect contentInsets, argument
130 public IBinder prepareDrag(IWindow window, int flags, argument
138 public boolean performDrag(IWindow window, IBinder dragToken, argument
147 public boolean startMovingTask(IWindow window, float startX, float startY) argument
154 public void reportDropResult(IWindow window, boolean consumed) throws RemoteException { argument
164 public void dragRecipientEntered(IWindow window) throws RemoteException { argument
169 public void dragRecipientExited(IWindow window) throw argument
174 setWallpaperPosition(IBinder window, float x, float y, float xStep, float yStep) argument
180 wallpaperOffsetsComplete(IBinder window) argument
190 sendWallpaperCommand(IBinder window, String action, int x, int y, int z, Bundle extras, boolean sync) argument
197 wallpaperCommandComplete(IBinder window, Bundle result) argument
208 onRectangleOnScreenRequested(IBinder window, Rect rectangle) argument
213 getWindowId(IBinder window) argument
219 pokeDrawLock(IBinder window) argument
229 updatePointerIcon(IWindow window) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQuery.java45 * @param window The window to fill into
46 * @param startPos The start position for filling the window.
47 * @param requiredPos The position of a row that MUST be in the window.
50 * return regardless of whether they fit in the window.
57 int fillWindow(CursorWindow window, int startPos, int requiredPos, boolean countAllRows) { argument
60 window.acquireReference();
63 window, startPos, requiredPos, countAllRows, getConnectionFlags(),
73 window.releaseReference();
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java67 * Session object per process that is interacting with the window manager.
80 // Set of visible application overlay window surfaces connected to this session.
82 // Set of visible alert window surfaces connected to this session.
182 public int add(IWindow window, int seq, WindowManager.LayoutParams attrs, argument
185 return addToDisplay(window, seq, attrs, viewVisibility, Display.DEFAULT_DISPLAY,
190 public int addToDisplay(IWindow window, int seq, WindowManager.LayoutParams attrs, argument
193 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId,
198 public int addWithoutInputChannel(IWindow window, int seq, WindowManager.LayoutParams attrs, argument
200 return addToDisplayWithoutInputChannel(window, seq, attrs, viewVisibility,
205 public int addToDisplayWithoutInputChannel(IWindow window, in argument
211 remove(IWindow window) argument
220 relayout(IWindow window, int seq, WindowManager.LayoutParams attrs, int requestedWidth, int requestedHeight, int viewFlags, int flags, Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, Rect outVisibleInsets, Rect outStableInsets, Rect outsets, Rect outBackdropFrame, MergedConfiguration mergedConfiguration, Surface outSurface) argument
238 outOfMemory(IWindow window) argument
242 setTransparentRegion(IWindow window, Region region) argument
246 setInsets(IWindow window, int touchableInsets, Rect contentInsets, Rect visibleInsets, Region touchableArea) argument
252 getDisplayFrame(IWindow window, Rect outDisplayFrame) argument
256 finishDrawing(IWindow window) argument
274 performHapticFeedback(IWindow window, int effectId, boolean always) argument
289 prepareDrag(IWindow window, int flags, int width, int height, Surface outSurface) argument
295 performDrag(IWindow window, IBinder dragToken, int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY, ClipData data) argument
378 startMovingTask(IWindow window, float startX, float startY) argument
390 reportDropResult(IWindow window, boolean consumed) argument
458 dragRecipientEntered(IWindow window) argument
464 dragRecipientExited(IWindow window) argument
470 setWallpaperPosition(IBinder window, float x, float y, float xStep, float yStep) argument
483 wallpaperOffsetsComplete(IBinder window) argument
489 setWallpaperDisplayOffset(IBinder window, int x, int y) argument
501 sendWallpaperCommand(IBinder window, String action, int x, int y, int z, Bundle extras, boolean sync) argument
515 wallpaperCommandComplete(IBinder window, Bundle result) argument
532 getWindowId(IBinder window) argument
537 pokeDrawLock(IBinder window) argument
547 updatePointerIcon(IWindow window) argument
[all...]
/frameworks/native/opengl/tests/include/
H A DEGLUtils.h24 #include <system/window.h>
48 EGLNativeWindowType window,
124 EGLNativeWindowType window,
130 if (!window)
133 if ((err = window->query(window, NATIVE_WINDOW_FORMAT, &format)) < 0) {
121 selectConfigForNativeWindow( EGLDisplay dpy, EGLint const* attrs, EGLNativeWindowType window, EGLConfig* outConfig) argument

Completed in 490 milliseconds

12345678910