Lines Matching refs:fInfo
132 fInfo(NULL),
191 if (fDirectModeEnabled && fInfo != NULL) {
192 fWidth = fInfo->window_bounds.right - fInfo->window_bounds.left;
193 fHeight = fInfo->window_bounds.bottom - fInfo->window_bounds.top;
230 if (fInfo != NULL) {
232 RasBuf32 dstBuf(fInfo);
233 for (uint32 i = 0; i < fInfo->clip_list_count; i++) {
234 clipping_rect *clip = &fInfo->clip_list[i];
237 dstClip.Shift(-fInfo->window_bounds.left, -fInfo->window_bounds.top);
296 if (!fInfo) {
297 fInfo = (direct_buffer_info *)calloc(1,
300 memcpy(fInfo, info, DIRECT_BUFFER_INFO_AREA_SIZE);
301 } else if (fInfo) {
302 free(fInfo);
303 fInfo = NULL;