Lines Matching defs:drmInfo

1178     drm_radeon_init_t  drmInfo;
1180 memset(&drmInfo, 0, sizeof(drm_radeon_init_t));
1182 drmInfo.func = RADEON_INIT_R600_CP;
1184 drmInfo.func = RADEON_INIT_R300_CP;
1186 drmInfo.func = RADEON_INIT_R200_CP;
1188 drmInfo.func = RADEON_INIT_CP;
1190 drmInfo.sarea_priv_offset = sizeof(XF86DRISAREARec);
1191 drmInfo.is_pci = (info->cardType!=CARD_AGP);
1192 drmInfo.cp_mode = RADEON_CSQ_PRIBM_INDBM;
1193 drmInfo.gart_size = info->dri->gartSize*1024*1024;
1194 drmInfo.ring_size = info->dri->ringSize*1024*1024;
1195 drmInfo.usec_timeout = info->cp->CPusecTimeout;
1197 drmInfo.fb_bpp = info->CurrentLayout.pixel_code;
1198 drmInfo.depth_bpp = (info->dri->depthBits - 8) * 2;
1200 drmInfo.front_offset = info->dri->frontOffset;
1201 drmInfo.front_pitch = info->dri->frontPitch * cpp;
1202 drmInfo.back_offset = info->dri->backOffset;
1203 drmInfo.back_pitch = info->dri->backPitch * cpp;
1204 drmInfo.depth_offset = info->dri->depthOffset;
1205 drmInfo.depth_pitch = info->dri->depthPitch * drmInfo.depth_bpp / 8;
1207 drmInfo.fb_offset = info->dri->fbHandle;
1208 drmInfo.mmio_offset = info->dri->registerHandle;
1209 drmInfo.ring_offset = info->dri->ringHandle;
1210 drmInfo.ring_rptr_offset = info->dri->ringReadPtrHandle;
1211 drmInfo.buffers_offset = info->dri->bufHandle;
1212 drmInfo.gart_textures_offset= info->dri->gartTexHandle;
1215 &drmInfo, sizeof(drm_radeon_init_t)) < 0)
1893 drm_radeon_init_t drmInfo;
1916 memset(&drmInfo, 0, sizeof(drm_radeon_init_t));
1917 drmInfo.func = RADEON_CLEANUP_CP;
1919 &drmInfo, sizeof(drm_radeon_init_t));