GrVkPipelineLayout.cpp 415 B

1234567891011121314
  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. #include "src/gpu/vk/GrVkGpu.h"
  8. #include "src/gpu/vk/GrVkPipelineLayout.h"
  9. #include "src/gpu/vk/GrVkUtil.h"
  10. void GrVkPipelineLayout::freeGPUData(GrVkGpu* gpu) const {
  11. GR_VK_CALL(gpu->vkInterface(), DestroyPipelineLayout(gpu->device(), fPipelineLayout, nullptr));
  12. }