Lines Matching refs:texTemp
1427 struct pipe_resource texTemp, *tex; in renderer_copy_surface() local
1464 memset(&texTemp, 0, sizeof(texTemp)); in renderer_copy_surface()
1465 texTemp.target = PIPE_TEXTURE_2D; in renderer_copy_surface()
1466 texTemp.format = src->format; in renderer_copy_surface()
1467 texTemp.last_level = 0; in renderer_copy_surface()
1468 texTemp.width0 = srcW; in renderer_copy_surface()
1469 texTemp.height0 = srcH; in renderer_copy_surface()
1470 texTemp.depth0 = 1; in renderer_copy_surface()
1471 texTemp.array_size = 1; in renderer_copy_surface()
1472 texTemp.bind = PIPE_BIND_SAMPLER_VIEW; in renderer_copy_surface()
1474 tex = screen->resource_create(screen, &texTemp); in renderer_copy_surface()