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

123

/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
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))
8 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))
H A Dcommon.mk2 common_includes := hardware/qcom/display/msm8960/libgralloc
3 common_includes += hardware/qcom/display/msm8960/liboverlay
4 common_includes += hardware/qcom/display/msm8960/libcopybit
5 common_includes += hardware/qcom/display/msm8960/libqdutils
6 common_includes += hardware/qcom/display/msm8960/libhwcomposer
7 common_includes += hardware/qcom/display/msm8960/libexternal
8 common_includes += hardware/qcom/display/msm8960/libqservice
10 common_header_export_path := qcom/display
12 #Common libraries external to display HAL
/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))
H A Dcommon.mk2 common_includes := hardware/qcom/display/msm8974/libgralloc
3 common_includes += hardware/qcom/display/msm8974/liboverlay
4 common_includes += hardware/qcom/display/msm8974/libcopybit
5 common_includes += hardware/qcom/display/msm8974/libqdutils
6 common_includes += hardware/qcom/display/msm8974/libhwcomposer
7 common_includes += hardware/qcom/display/msm8974/libexternal
8 common_includes += hardware/qcom/display/msm8974/libqservice
10 common_header_export_path := qcom/display
12 #Common libraries external to display HAL
/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/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/x11/
H A Dva_dri2.h50 VA_DRI2QueryExtension(Display *display, int *eventBase, int *errorBase);
52 VA_DRI2QueryVersion(Display *display, int *major, int *minor);
54 VA_DRI2Connect(Display *display, XID window,
57 VA_DRI2Authenticate(Display *display, XID window, drm_magic_t magic);
59 VA_DRI2CreateDrawable(Display *display, XID drawable);
61 VA_DRI2DestroyDrawable(Display *display, XID handle);
/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/common/libva/va/wayland/
H A Dva_wayland.h50 * - Create a VA display for an active Wayland display ;
57 * \brief Returns a VA display wrapping the specified Wayland display.
59 * This functions returns a (possibly cached) VA display from the
60 * specified Wayland @display.
62 * @param[in] display the native Wayland display
63 * @return the VA display
66 vaGetDisplayWl(struct wl_display *display);
[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...]
H A DTngDisplayContext.h33 bool commitContents(hwc_display_contents_1_t *display, HwcLayerList* layerList);
/hardware/libhardware/tests/hwc/
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...]
H A Dutil.h28 void egl_destroy(EGLDisplay display, EGLSurface surface);
/hardware/qcom/media/libc2dcolorconvert/
H A DAndroid.mk11 $(TARGET_OUT_HEADERS)/qcom/display
/hardware/intel/img/hwcomposer/include/
H A DDummyDevice.h33 virtual bool prePrepare(hwc_display_contents_1_t *display);
34 virtual bool prepare(hwc_display_contents_1_t *display);
35 virtual bool commit(hwc_display_contents_1_t *display,
H A DIDisplayDevice.h26 // display config
51 // display device interface
54 // display device type
74 virtual bool prePrepare(hwc_display_contents_1_t *display) = 0;
75 virtual bool prepare(hwc_display_contents_1_t *display) = 0;
76 virtual bool commit(hwc_display_contents_1_t *display,
H A DPhysicalDevice.h38 virtual bool prePrepare(hwc_display_contents_1_t *display);
39 virtual bool prepare(hwc_display_contents_1_t *display);
40 virtual bool commit(hwc_display_contents_1_t *display, IDisplayContext *context);
56 // display config operations
87 // display configs
H A DIDisplayContext.h34 virtual bool commitContents(hwc_display_contents_1_t *display, HwcLayerList *layerList) = 0;
/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/intel/img/psb_video/src/android/
H A Dpsb_mds.h32 #include <display/MultiDisplayService.h>
/hardware/intel/common/libmix/videoencoder/
H A DVideoEncoderUtils.h34 VASurfaceMap(VADisplay display, int hwcap);
82 VASurfaceID CreateNewVASurface(VADisplay display, int32_t width, int32_t height);

Completed in 362 milliseconds

123