Searched defs:display (Results 151 - 175 of 425) sorted by relevance

1234567891011>>

/external/deqp/modules/egl/
H A DteglCreateContextTests.cpp52 void executeForConfig (tcu::egl::Display& display, EGLConfig config);
64 void CreateContextCase::executeForConfig (tcu::egl::Display& display, EGLConfig config) argument
67 EGLint id = display.getConfigAttrib(config, EGL_CONFIG_ID);
68 EGLint apiBits = display.getConfigAttrib(config, EGL_RENDERABLE_TYPE);
99 EGLContext context = eglCreateContext(display.getEGLDisplay(), config, EGL_NO_CONTEXT, apis[apiNdx].ctxAttrs);
110 TCU_CHECK_EGL_CALL(eglDestroyContext(display.getEGLDisplay(), context));
H A DteglInfoTests.cpp89 const tcu::egl::Display& display = m_eglTestCtx.getDisplay(); local
90 const int dispMajor = display.getEGLMajorVersion();
91 const int dispMinor = display.getEGLMinorVersion();
H A DteglSimpleConfigCase.cpp57 const tcu::egl::Display& display = m_eglTestCtx.getDisplay(); local
73 display.getConfigs(allConfigs);
79 const EGLint configId = display.getConfigAttrib(*cfgIter, EGL_CONFIG_ID);
103 tcu::egl::Display& display = m_eglTestCtx.getDisplay(); local
108 executeForConfig(display, config);
H A DteglSurfacelessContextTests.cpp59 void executeForConfig (tcu::egl::Display& display, EGLConfig config);
71 void SurfacelessContextCase::executeForConfig (tcu::egl::Display& display, EGLConfig config) argument
74 const EGLint id = display.getConfigAttrib(config, EGL_CONFIG_ID);
75 const EGLint apiBits = display.getConfigAttrib(config, EGL_RENDERABLE_TYPE);
98 display.getExtensions(extensions);
114 EGLContext context = eglCreateContext(display.getEGLDisplay(), config, EGL_NO_CONTEXT, apis[apiNdx].ctxAttrs);
117 if (!eglMakeCurrent(display.getEGLDisplay(), EGL_NO_SURFACE, EGL_NO_SURFACE, context))
124 TCU_CHECK_EGL_CALL(eglDestroyContext(display.getEGLDisplay(), context));
135 TCU_CHECK_EGL_CALL(eglMakeCurrent(display.getEGLDisplay(), EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT));
138 TCU_CHECK_EGL_CALL(eglDestroyContext(display
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DBarGraph.java78 public void paint(Display display, int width, int height, GC gc) { argument
85 Color bg= display.getSystemColor(SWT.COLOR_WHITE);
104 Color fg= display.getSystemColor(SWT.COLOR_BLACK);
146 Color lightblue= new Color(display, 237, 243, 254);
155 Color grey= display.getSystemColor(SWT.COLOR_GRAY);
180 Color blue= display.getSystemColor(SWT.COLOR_BLUE);
182 // Color green= display.getSystemColor(SWT.COLOR_GREEN);
183 // Color red= display.getSystemColor(SWT.COLOR_RED);
184 Color green = new Color(display, 95, 191, 95);
185 Color red = new Color(display, 22
[all...]
H A DLineGraph.java34 GraphItem(String title, String description,double value, Color color,boolean display) { argument
36 this.displayDescription=display;
165 public void addItem(String name, String description, double value, Color col, boolean display) { argument
166 this.fItems.add(new GraphItem(name, description, value, col,display));
H A DTimeLineGraph.java148 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp) { argument
149 addItem(groupName, name, description, value, col, display, timestamp,false);
152 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial) { argument
153 addItem(groupName, name,description, value, col, display,
157 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial,boolean drawBaseline) { argument
163 items.add(new TimeLineGraphItem(name, description, value, col, display,
/external/expat/tests/
H A Dminicheck.c152 int display = (int) (percentage * 100); local
154 display, runner->nchecks, runner->nfailures);
/external/libpng/contrib/libtests/
H A Dtimepng.c42 png_bytep row = NULL, display = NULL; local
51 if (display != NULL) free(display);
67 display = malloc(rowbytes);
69 if (row == NULL || display == NULL)
87 png_read_row(png_ptr, row, display);
96 free(display);
/external/mesa3d/src/egl/main/
H A Deglscreen.c40 * To actually display a screen surface on a screen, the eglShowSurface()
103 * Link a screen to its display and return the handle of the link.
109 _EGLDisplay *display; local
113 display = screen->Display;
115 if (!display->Screens) {
116 display->Screens = _eglCreateArray("Screen", 4);
117 if (!display->Screens)
125 _eglAppendArray(display->Screens, (void *) screen);
136 _eglLookupScreen(EGLScreenMESA screen, _EGLDisplay *display) argument
140 if (!display || !displa
165 _eglGetScreensMESA(_EGLDriver *drv, _EGLDisplay *display, EGLScreenMESA *screens, EGLint max_screens, EGLint *num_screens) argument
[all...]
/external/mesa3d/src/egl/wayland/wayland-drm/
H A Dwayland-drm.c40 struct wl_display *display; member in struct:wl_drm
210 wayland_drm_init(struct wl_display *display, char *device_name, argument
217 drm->display = display;
222 wl_display_add_global(display, &wl_drm_interface, drm, bind_drm);
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_winsys_xsp.c47 Display *display; member in struct:vl_xsp_screen
69 if (XGetGeometry(xsp_screen->display, drawable, &root, &x, &y, &width, &height, &border_width, &depth) == BadDrawable)
129 vl_screen_create(Display *display, int screen) argument
134 assert(display);
140 winsys = xlib_create_sw_winsys(display);
153 xsp_screen->display = display;
155 xsp_screen->xdraw.visual = XDefaultVisual(display, screen);
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d_st.c43 _EGLDisplay *display; member in struct:egl_g3d_st_manager
63 _eglLockMutex(&gsmapi->display->Mutex);
65 img = _eglLookupImage(handle, gsmapi->display);
67 _eglUnlockMutex(&gsmapi->display->Mutex);
78 _eglUnlockMutex(&gsmapi->display->Mutex);
98 gsmapi->display = dpy;
/external/mesa3d/src/gallium/state_trackers/egl/wayland/
H A Dnative_shm.c77 wayland_create_shm_buffer(struct wayland_display *display, argument
81 struct wayland_shm_display *shmdpy = (struct wayland_shm_display *) display;
H A Dnative_wayland.h57 struct wl_buffer *(*create_buffer)(struct wayland_display *display,
75 struct wayland_display *display; member in struct:wayland_surface
115 wayland_create_shm_display(struct wl_display *display,
119 wayland_create_drm_display(struct wl_display *display,
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Ddevice.c40 vdp_imp_device_create_x11(Display *display, int screen, VdpDevice *device, argument
47 if (!(display && device && get_proc_address))
61 dev->vscreen = vl_screen_create(display, screen);
207 _ERROR_TYPE(VDP_STATUS_DISPLAY_PREEMPTED,"The display was preempted, or a fatal error occurred. The application must re-initialize VDPAU.");
/external/mesa3d/src/gallium/state_trackers/xvmc/tests/
H A Dtestlib.c44 Display *display,
63 if (!XvMCQueryExtension(display, &ev_base, &err_base))
65 if (XvQueryAdaptors(display, XDefaultRootWindow(display), &num_adaptors, &adaptor_info) != Success)
72 XvMCSurfaceInfo *surface_info = XvMCListSurfaceTypes(display, adaptor_info[i].base_id, &num_types);
91 if (XvGrabPort(display, adaptor_info[i].base_id + l, CurrentTime) == Success)
42 GetPort( Display *display, unsigned int width, unsigned int height, unsigned int chroma_format, const unsigned int *mc_types, unsigned int num_mc_types, XvPortID *port_id, int *surface_type_id, unsigned int *is_overlay, unsigned int *intra_unsigned ) argument
/external/mesa3d/src/gallium/winsys/sw/wayland/
H A Dwayland_sw_winsys.c61 struct wl_display *display; member in struct:wayland_sw_winsys
260 wayland_create_sw_winsys(struct wl_display *display) argument
268 wlws->display = display;
/external/mesa3d/src/glx/apple/
H A Dappledri.h80 Display *display; /* Display the event was read from */ member in struct:__anon27693
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_syswm.h89 Display *display; /**< The X11 display */ member in struct:SDL_SysWMinfo::__anon29376::__anon29377
90 Window window; /**< The X11 display window */
92 * any X11 functions using the display variable,
110 Display *gfxdisplay; /**< The X11 display to which rendering is done */
128 GR_WINDOW_ID window ; /* The display window */
147 HWND window; /**< The Win32 display window */
165 int window; /**< The RISC OS display window */
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A Dextutil.h44 * We need to keep a list of open displays since the Xlib display list isn't
45 * public. We also have to per-display info in a separate block since it isn't
50 Display *display; /* which display this is */ member in struct:_XExtDisplayInfo
64 Display* /* display */,
71 Display* /* display */,
78 Display* /* display */,
85 Display* /* display */,
92 Display* /* display */,
99 Display* /* display */,
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc129 SDL_Overlay *BE_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) { argument
185 overlay->hwdata->display = display;
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_yuv.c151 SDL_Overlay *DirectFB_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) argument
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5yuv.c122 SDL_Overlay *DX5_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display) argument
/external/skia/platform_tools/android/app/src/com/skia/
H A DSkiaSampleView.java193 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { argument
237 if (!egl.eglChooseConfig(display, configSpec, null, 0, value)) {
265 if (!egl.eglChooseConfig(display, configSpec, null, 0, value)) {
278 if (!egl.eglChooseConfig(display, configSpec, configs, numConfigs, value)) {
284 if (findConfigAttrib(egl, display, config , EGL10.EGL_RED_SIZE, 0) == 8 &&
285 findConfigAttrib(egl, display, config, EGL10.EGL_BLUE_SIZE, 0) == 8 &&
286 findConfigAttrib(egl, display, config, EGL10.EGL_GREEN_SIZE, 0) == 8 &&
287 findConfigAttrib(egl, display, config, EGL10.EGL_ALPHA_SIZE, 0) == 8 &&
288 findConfigAttrib(egl, display, config, EGL10.EGL_STENCIL_SIZE, 0) == 8) {
296 private int findConfigAttrib(EGL10 egl, EGLDisplay display, argument
[all...]

Completed in 2347 milliseconds

1234567891011>>