Home | History | Annotate | Download | only in driver

Lines Matching refs:mHal

33     RsdFrameBufferObj *fbo = (RsdFrameBufferObj*)fb->mHal.drv;
36 if (fb->mHal.state.depthTarget != NULL) {
37 depth = (DrvAllocation *)fb->mHal.state.depthTarget->mHal.drv;
40 rsdAllocationSyncAll(rsc, fb->mHal.state.depthTarget,
48 RsdFrameBufferObj *fbo = (RsdFrameBufferObj*)fb->mHal.drv;
50 for (uint32_t i = 0; i < fb->mHal.state.colorTargetsCount; i ++) {
52 if (fb->mHal.state.colorTargets[i] != NULL) {
53 color = (DrvAllocation *)fb->mHal.state.colorTargets[i]->mHal.drv;
56 rsdAllocationSyncAll(rsc, fb->mHal.state.colorTargets[i],
69 fb->mHal.drv = fbo;
71 RsdHal *dc = (RsdHal *)rsc->mHal.drv;
81 RsdFrameBufferObj *fbo = (RsdFrameBufferObj *)fb->mHal.drv;
82 if (fb->mHal.state.colorTargets[0]) {
83 fbo->setDimensions(fb->mHal.state.colorTargets[0]->getType()->getDimX(),
84 fb->mHal.state.colorTargets[0]->getType()->getDimY());
85 } else if (fb->mHal.state.depthTarget) {
86 fbo->setDimensions(fb->mHal.state.depthTarget->getType()->getDimX(),
87 fb->mHal.state.depthTarget->getType()->getDimY());
94 RsdFrameBufferObj *fbo = (RsdFrameBufferObj *)fb->mHal.drv;
96 fb->mHal.drv = NULL;