Searched defs:display (Results 1 - 25 of 25) sorted by relevance

/hardware/qcom/display/msm8084/
H A DAndroid.mk0 display-hals := libgralloc libcopybit liblight libvirtual
2 display-hals += libhwcomposer liboverlay libqdutils libexternal libqservice
3 display-hals += libmemtrack hdmi_cec
5 include $(call all-named-subdir-makefiles,$(display-hals))
8 include $(call all-named-subdir-makefiles,$(display-hals))
/hardware/qcom/display/msm8226/
H A DAndroid.mk0 display-hals := libgralloc libcopybit liblight libvirtual
2 display-hals += libhwcomposer liboverlay libqdutils libexternal libqservice
3 display-hals += libmemtrack
5 include $(call all-named-subdir-makefiles,$(display-hals))
9 include $(call all-named-subdir-makefiles,$(display-hals))
/hardware/qcom/display/msm8960/
H A DAndroid.mk0 display-hals := libgralloc libgenlock libcopybit liblight
2 display-hals += libhwcomposer liboverlay libqdutils libexternal libqservice
3 display-hals += libmemtrack
5 include $(call all-named-subdir-makefiles,$(display-hals))
9 include $(call all-named-subdir-makefiles,$(display-hals))
/hardware/qcom/display/msm8974/
H A DAndroid.mk0 display-hals := libgralloc libgenlock libcopybit liblight
2 display-hals += libhwcomposer liboverlay libqdutils libexternal libqservice
3 display-hals += libmemtrack
5 include $(call all-named-subdir-makefiles,$(display-hals))
9 include $(call all-named-subdir-makefiles,$(display-hals))
/hardware/intel/common/libva/test/common/
H A Dva_display_wayland.c34 struct display { struct
35 struct wl_display *display; member in struct:display
45 static struct display *g_display;
56 struct display * const d = data;
73 struct display *d;
85 d->display = wl_display_connect(NULL);
86 if (!d->display) {
90 wl_display_set_user_data(d->display, d);
91 d->registry = wl_display_get_registry(d->display);
93 d->event_fd = wl_display_get_fd(d->display);
[all...]
/hardware/intel/common/libva/va/wayland/
H A Dva_wayland.c116 vaGetDisplayWl(struct wl_display *display) argument
137 pDriverContext->native_dpy = display;
/hardware/intel/img/hwcomposer/common/base/
H A DDisplayAnalyzer.cpp115 void DisplayAnalyzer::setCompositionType(hwc_display_contents_1_t *display, int type) argument
117 for (size_t i = 0; i < display->numHwLayers - 1; i++) {
118 hwc_layer_1_t *layer = &display->hwLayers[i];
/hardware/libhardware/tests/hwc/
H A Dtest-arrows.c141 EGLDisplay display; local
148 if (egl_create(&display, &surface, &w, &h))
156 eglSwapBuffers(display, surface);
162 egl_destroy(display, surface);
H A Dutil.c177 EGLDisplay display; local
182 display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
183 if (display == EGL_NO_DISPLAY)
186 if (!(res = eglInitialize(display, &major, &minor)))
197 if ((res = select_config_for_window(display, config_attrs, format, &config)))
200 surface = eglCreateWindowSurface(display, config, window, NULL);
204 context = eglCreateContext(display, config, EGL_NO_CONTEXT, context_attrs);
208 if (!(res = eglMakeCurrent(display, surface, surface, context)))
211 eglQuerySurface(display, surface, EGL_WIDTH, &w);
212 eglQuerySurface(display, surfac
229 egl_destroy(EGLDisplay display, EGLSurface surface) argument
[all...]
/hardware/intel/img/hwcomposer/common/devices/
H A DDummyDevice.cpp41 bool DummyDevice::prePrepare(hwc_display_contents_1_t *display) argument
45 if (!display) {
49 // nothing need to do for dummy display
53 bool DummyDevice::prepare(hwc_display_contents_1_t *display) argument
57 if (!display || mType >= DEVICE_VIRTUAL) {
61 // skip all layers composition on dummy display
62 if (display->flags & HWC_GEOMETRY_CHANGED) {
63 for (size_t i=0; i < display->numHwLayers-1; i++) {
64 hwc_layer_1 * player = &display->hwLayers[i];
73 bool DummyDevice::commit(hwc_display_contents_1_t *display, IDisplayContex argument
[all...]
H A DPhysicalDevice.cpp80 bool PhysicalDevice::prePrepare(hwc_display_contents_1_t *display) argument
85 if (!mConnected || !display || mBlank) {
93 if ((display->flags & HWC_GEOMETRY_CHANGED) && mLayerList) {
99 bool PhysicalDevice::prepare(hwc_display_contents_1_t *display) argument
103 if (!mConnected || !display || mBlank)
107 if (display->flags & HWC_GEOMETRY_CHANGED) {
108 onGeometryChanged(display);
116 return mLayerList->update(display);
120 bool PhysicalDevice::commit(hwc_display_contents_1_t *display, IDisplayContext *context) argument
124 if (!display || !contex
[all...]
/hardware/intel/img/hwcomposer/ips/tangier/
H A DTngDisplayContext.cpp53 // init IMG display device
56 ELOGTRACE("failed to get display device");
73 bool TngDisplayContext::commitContents(hwc_display_contents_1_t *display, HwcLayerList *layerList) argument
79 if (!display || !layerList) {
86 for (size_t i = 0; i < display->numHwLayers; i++) {
93 if (!display->hwLayers[i].handle) {
110 imgLayer->psLayer = &display->hwLayers[i];
165 hwc_display_contents_1_t* display = displays[i]; local
166 if (!display) {
170 for (size_t j = 0; j < display
[all...]
/hardware/intel/common/libva/test/putsurface/
H A Dputsurface_wayland.c42 struct display;
101 struct display { struct
102 struct wl_display *display; member in struct:display
110 struct wl_display *display; member in struct:drawable
140 struct display *d;
148 d = wl_display_get_user_data(wl_drawable->display);
154 wl_display_flush(d->display);
156 wl_display_dispatch(wl_drawable->display);
169 wl_display_flush(d->display);
186 struct display * cons
246 struct wl_display * const display = win_display; local
291 struct wl_display * const display = win_display; local
[all...]
/hardware/intel/common/libva/va/drm/
H A Dva_drm_auth_x11.c38 typedef int (*X11CloseDisplayFunc)(Display *display);
40 Display *display, int *event_base, int *error_base);
42 Display *display, int *major, int *minor);
44 Display *display, XID window, uint32_t magic);
57 Display *display; member in struct:drm_auth_x11
116 auth->display = vtable->x11_open_display(NULL);
117 if (!auth->display)
120 auth->window = DefaultRootWindow(auth->display);
130 if (auth->display) {
131 auth->vtable.x11_close_display(auth->display);
[all...]
/hardware/intel/common/libmix/videoencoder/
H A DVideoEncoderUtils.cpp263 VASurfaceMap::VASurfaceMap(VADisplay display, int hwcap) { argument
265 mVADisplay = display;
766 VASurfaceID CreateNewVASurface(VADisplay display, int32_t width, int32_t height) { argument
802 vaStatus = vaCreateSurfaces(display, VA_RT_FORMAT_YUV420, width,
H A DVideoEncoderBase.cpp69 // here the display can be any value, use following one
71 unsigned int display = 0x18C34078; local
78 mVADisplay = vaGetDisplay(&display);
1612 vinfo.handle = (intptr_t)upStreamBuffer->display;
H A DVideoEncoderDef.h487 void *display; member in struct:VideoParamsUpstreamBuffer
/hardware/intel/img/psb_video/src/x11/
H A Dpsb_xrandr.c489 outputChangePredicate(Display *display, XEvent *event, char *args) argument
864 drv_debug_msg(VIDEO_DEBUG_ERROR, "Xrandr: Invalid screen number %d (display has %d)\n",
H A Dpsb_coverlay.c54 psb_x11_getWindowCoordinate(Display * display, argument
63 if ((status = XGetWindowAttributes(display,
79 if (XTranslateCoordinates(display,
81 DefaultRootWindow(display),
127 psb_x11_substractRects(Display * display, argument
133 int display_width = (int)(DisplayWidth(display, DefaultScreen(display))) - 1;
134 int display_height = (int)(DisplayHeight(display, DefaultScreen(display))) - 1;
254 psb_x11_createWindowClipBoxList(Display * display, argument
[all...]
/hardware/intel/common/libmix/videodecoder/
H A DVideoDecoderDefs.h65 WANT_LOW_DELAY = 0x10, // make display order same as decoding order
177 VADisplay display; member in struct:VideoRenderBuffer
/hardware/intel/common/libva/va/glx/
H A Dva_glx_impl.c300 Display *display; member in struct:OpenGLContextState
311 if (cs->display && cs->context) {
313 glXMakeCurrent(cs->display, None, NULL);
314 glXDestroyContext(cs->display, cs->context);
315 cs->display = NULL;
343 cs->display = ctx->native_dpy;
349 parent->display,
415 cs->display = glXGetCurrentDisplay();
423 /* If display is NULL, this could be that new_cs was retrieved from
426 if (!new_cs->display)
[all...]
/hardware/ti/omap4-aah/test/CameraHal/
H A Dcamera_test_surfacetexture.cpp312 void GLSurface::initialize(int display) { argument
327 if (display) {
531 void SurfaceTextureGL::initialize(int display, int tex_id) { argument
532 GLSurface::initialize(display);
/hardware/ti/omap4-aah/hwc/
H A Dhwc.c195 int ext_ovls; /* # of overlays on external display for current composition */
196 int ext_ovls_wanted; /* # of overlays that should be on external display for current composition */
197 int last_ext_ovls; /* # of overlays on external/internal display for last composition */
666 /* display position */
800 /* align crop window with display coordinates */
857 /* display position */
923 /* FIXME: limit vertical downscale well below theoretical limit as we saw display artifacts */
935 /* :HACK: limit horizontal downscale well below theoretical limit as we saw display artifacts */
1180 char display[PROPERTY_VALUE_MAX]; local
1181 snprintf(display, sizeo
[all...]
/hardware/ril/include/telephony/
H A Dril.h1068 RIL_CDMA_DisplayInfoRecord display; member in union:__anon2452::__anon2453
/hardware/ril/reference-ril/
H A Dril.h1068 RIL_CDMA_DisplayInfoRecord display; member in union:__anon2617::__anon2618

Completed in 782 milliseconds