Lines Matching refs:cfg
2688 GE_Config cfg; in Ioctl_GFX_Init() local
2697 memset(&cfg, 0 , sizeof(GE_Config)); in Ioctl_GFX_Init()
2698 cfg.bIsCompt = pGFXInit->pGFX_Init->bIsCompt; in Ioctl_GFX_Init()
2699 cfg.bIsHK= pGFXInit->pGFX_Init->bIsHK; in Ioctl_GFX_Init()
2701 cfg.u32VCmdQSize = pGFXInit->pGFX_Init->u32VCmdQSize; in Ioctl_GFX_Init()
2702 cfg.PhyVCmdQAddr = pGFXInit->pGFX_Init->u32VCmdQAddr; in Ioctl_GFX_Init()
2707 MDrv_GE_Init(pInstance, (GE_Config*)&cfg, &g_apiGFXLocal.g_pGEContext); in Ioctl_GFX_Init()
3365 GE_Config cfg; in Ioctl_GFX_GetConfig() local
3375 memset(&cfg, 0 , sizeof(GE_Config)); in Ioctl_GFX_GetConfig()
3376 if(FALSE==MDrv_GE_GetConfig((GE_Config*)&cfg)) in Ioctl_GFX_GetConfig()
3379 stGFXcfg->bIsCompt = cfg.bIsCompt; in Ioctl_GFX_GetConfig()
3380 stGFXcfg->bIsHK = cfg.bIsHK; in Ioctl_GFX_GetConfig()
3381 stGFXcfg->u32VCmdQSize = cfg.u32VCmdQSize; in Ioctl_GFX_GetConfig()
3382 stGFXcfg->u32VCmdQAddr = cfg.PhyVCmdQAddr; in Ioctl_GFX_GetConfig()