Lines Matching refs:fInfo
49 fInfo(NULL), in SoftwareRenderer()
115 if (fDirectModeEnabled && fInfo != NULL) { in LockGL()
116 fWidth = fInfo->window_bounds.right - fInfo->window_bounds.left; in LockGL()
117 fHeight = fInfo->window_bounds.bottom - fInfo->window_bounds.top; in LockGL()
157 if (!fDirectModeEnabled || fInfo == NULL) { in SwapBuffers()
168 if (fInfo->window_bounds.bottom - fInfo->window_bounds.top in SwapBuffers()
170 || fInfo->window_bounds.right - fInfo->window_bounds.left in SwapBuffers()
179 for (uint32 i = 0; i < fInfo->clip_list_count; i++) { in SwapBuffers()
180 clipping_rect *clip = &fInfo->clip_list[i]; in SwapBuffers()
185 uint8 *p = (uint8 *)fInfo->bits + clip->top in SwapBuffers()
186 * fInfo->bytes_per_row + clip->left * bytesPerPixel; in SwapBuffers()
188 + (clip->top - fInfo->window_bounds.top) * bytesPerRow in SwapBuffers()
189 + (clip->left - fInfo->window_bounds.left) * bytesPerPixel; in SwapBuffers()
193 p += fInfo->bytes_per_row; in SwapBuffers()
207 if ((!fDirectModeEnabled || fInfo == NULL) && fBitmap) in Draw()
309 if (!fInfo) { in DirectConnected()
310 fInfo = (direct_buffer_info *)calloc(1, in DirectConnected()
313 memcpy(fInfo, info, DIRECT_BUFFER_INFO_AREA_SIZE); in DirectConnected()
314 } else if (fInfo) { in DirectConnected()
315 free(fInfo); in DirectConnected()
316 fInfo = NULL; in DirectConnected()