Searched refs:crtc (Results 1 - 9 of 9) sorted by relevance

/hardware/intel/img/libdrm/tests/modeprint/
H A Dmodeprint.c201 int printCrtc(int fd, drmModeResPtr res, drmModeCrtcPtr crtc, uint32_t id) argument
205 printf("\tx : %i\n", crtc->x);
206 printf("\ty : %i\n", crtc->y);
207 printf("\twidth : %i\n", crtc->width);
208 printf("\theight : %i\n", crtc->height);
209 printf("\tmode : %p\n", &crtc->mode);
210 printf("\tgamma size : %d\n", crtc->gamma_size);
233 drmModeCrtcPtr crtc; local
277 crtc = drmModeGetCrtc(fd, res->crtcs[i]);
279 if (!crtc)
[all...]
/hardware/intel/img/libdrm/libdrm/
H A Dxf86drmMode.c250 struct drm_mode_crtc crtc; local
253 crtc.crtc_id = crtcId;
255 if (drmIoctl(fd, DRM_IOCTL_MODE_GETCRTC, &crtc))
265 r->crtc_id = crtc.crtc_id;
266 r->x = crtc.x;
267 r->y = crtc.y;
268 r->mode_valid = crtc.mode_valid;
270 memcpy(&r->mode, &crtc.mode, sizeof(struct drm_mode_modeinfo));
271 r->buffer_id = crtc.fb_id;
272 r->gamma_size = crtc
281 struct drm_mode_crtc crtc; local
[all...]
/hardware/intel/img/libdrm/tests/modetest/
H A Dmodetest.c212 drmModeCrtc *crtc; local
218 crtc = drmModeGetCrtc(fd, resources->crtcs[i]);
220 if (!crtc) {
221 fprintf(stderr, "could not get crtc %i: %s\n",
226 crtc->crtc_id,
227 crtc->buffer_id,
228 crtc->x, crtc->y,
229 crtc->width, crtc
273 int crtc; member in struct:connector
[all...]
/hardware/intel/img/hwcomposer/common/base/
H A DDrm.cpp160 // get an attached crtc or spare crtc
162 ILOGTRACE("Drm encoder has crtc attached on device %d", device);
163 output->crtc = drmModeGetCrtc(mDrmFd, output->encoder->crtc_id);
164 if (!output->crtc) {
165 ELOGTRACE("failed to get crtc from a known crtc id");
166 // fall through to get a spare crtc
169 if (!output->crtc) {
170 ILOGTRACE("getting crtc fo
171 drmModeCrtcPtr crtc; local
[all...]
H A DDrm.h89 drmModeCrtcPtr crtc; member in struct:android::intel::Drm::DrmOutput
/hardware/intel/img/psb_video/src/x11/
H A Dpsb_xrandr.c189 drv_debug_msg(VIDEO_DEBUG_ERROR, "Failed to get crtc info\n");
235 drv_debug_msg(VIDEO_DEBUG_ERROR, "Failed to get crtc info\n");
265 if (p_output->crtc) {
268 psb_xrandr_info->local_crtc[0] = p_output->crtc;
269 if (psb_xrandr_info->mipi0_rotation != p_output->crtc->rotation) {
270 psb_xrandr_info->mipi0_rotation = p_output->crtc->rotation;
280 if (p_output->crtc) {
283 psb_xrandr_info->local_crtc[1] = p_output->crtc;
284 if (psb_xrandr_info->mipi1_rotation != p_output->crtc->rotation) {
285 psb_xrandr_info->mipi1_rotation = p_output->crtc
[all...]
H A Dpsb_xrandr.h130 psb_xrandr_crtc_p crtc; member in struct:_psb_xrandr_output_s
/hardware/intel/img/psb_video/src/
H A Dpsb_overlay.c1097 if (!i830_get_crtc(pScrn, &crtc, &dstBox))
1104 if (crtc->rotation & (RR_Rotate_90 | RR_Rotate_270)) {
1139 &crtc,
1142 xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "%s: Fail to clip video to any crtc!\n", __FUNCTION__);
1214 i830_display_video_sprite(pScrn, crtc, width, height, dstPitch,
/hardware/intel/img/libdrm/shared-core/
H A Ddrm.h575 uint32_t crtc; member in struct:drm_modeset_ctl

Completed in 110 milliseconds