blob: 220e28b1d4b682f42052f99682288f2db9cfe215 [file] [log] [blame]
Greg Daniel7d918fd2018-06-19 15:22:01 -04001/*
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 Nicholas8e265a72018-12-12 16:22:40 -050012void GrVkPipelineLayout::freeGPUData(GrVkGpu* gpu) const {
Greg Daniel7d918fd2018-06-19 15:22:01 -040013 GR_VK_CALL(gpu->vkInterface(), DestroyPipelineLayout(gpu->device(), fPipelineLayout, nullptr));
14}