| 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 "GrRenderTarget.h" | 10 #include "GrRenderTarget.h" |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 NULL, // pNext | 580 NULL, // pNext |
| 581 1, // waitSemaphoreCount | 581 1, // waitSemaphoreCount |
| 582 &backbuffer->fRenderSemaphore, // pWaitSemaphores | 582 &backbuffer->fRenderSemaphore, // pWaitSemaphores |
| 583 1, // swapchainCount | 583 1, // swapchainCount |
| 584 &fSwapchain, // pSwapchains | 584 &fSwapchain, // pSwapchains |
| 585 &backbuffer->fImageIndex, // pImageIndices | 585 &backbuffer->fImageIndex, // pImageIndices |
| 586 NULL // pResults | 586 NULL // pResults |
| 587 }; | 587 }; |
| 588 | 588 |
| 589 fQueuePresentKHR(fPresentQueue, &presentInfo); | 589 fQueuePresentKHR(fPresentQueue, &presentInfo); |
| 590 | |
| 591 } | 590 } |
| 592 | 591 |
| 593 } //namespace sk_app | 592 } //namespace sk_app |
| OLD | NEW |