OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2015 Google Inc. | 3 * Copyright 2015 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #include "GrContext.h" | 9 #include "GrContext.h" |
10 #include "SkSurface.h" | 10 #include "SkSurface.h" |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
559 &backbuffer->fRenderSemaphore, // pWaitSemaphores | 559 &backbuffer->fRenderSemaphore, // pWaitSemaphores |
560 1, // swapchainCount | 560 1, // swapchainCount |
561 &fSwapchain, // pSwapchains | 561 &fSwapchain, // pSwapchains |
562 &backbuffer->fImageIndex, // pImageIndices | 562 &backbuffer->fImageIndex, // pImageIndices |
563 NULL // pResults | 563 NULL // pResults |
564 }; | 564 }; |
565 | 565 |
566 fQueuePresentKHR(fPresentQueue, &presentInfo); | 566 fQueuePresentKHR(fPresentQueue, &presentInfo); |
567 | 567 |
568 } | 568 } |
OLD | NEW |