Greg Daniel | 7d918fd | 2018-06-19 15:22:01 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "GrVkPipelineLayout.h" |
| 9 | #include "GrVkGpu.h" |
| 10 | #include "GrVkUtil.h" |
| 11 | |
Ethan Nicholas | 8e265a7 | 2018-12-12 16:22:40 -0500 | [diff] [blame] | 12 | void GrVkPipelineLayout::freeGPUData(GrVkGpu* gpu) const { |
Greg Daniel | 7d918fd | 2018-06-19 15:22:01 -0400 | [diff] [blame] | 13 | GR_VK_CALL(gpu->vkInterface(), DestroyPipelineLayout(gpu->device(), fPipelineLayout, nullptr)); |
| 14 | } |