Lines Matching refs:fImageCount
342 fGetSwapchainImagesKHR(fDevice, fSwapchain, &fImageCount, nullptr);
343 SkASSERT(fImageCount);
344 fImages = new VkImage[fImageCount];
345 fGetSwapchainImagesKHR(fDevice, fSwapchain, &fImageCount, fImages);
348 fImageLayouts = new VkImageLayout[fImageCount];
349 fSurfaces = new sk_sp<SkSurface>[fImageCount];
350 for (uint32_t i = 0; i < fImageCount; ++i) {
394 fBackbuffers = new BackbufferInfo[fImageCount + 1];
395 for (uint32_t i = 0; i < fImageCount + 1; ++i) {
402 fCurrentBackbufferIndex = fImageCount;
409 for (uint32_t i = 0; i < fImageCount + 1; ++i) {
479 if (fCurrentBackbufferIndex > fImageCount) {