• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
freeGPUData(GrVkGpu * gpu) const12 void GrVkPipelineLayout::freeGPUData(GrVkGpu* gpu) const {
13     GR_VK_CALL(gpu->vkInterface(), DestroyPipelineLayout(gpu->device(), fPipelineLayout, nullptr));
14 }
15