blob: d98810ffd4fbded56421b70a9e6f55d9618d3a11 [file] [log] [blame]
//
// Copyright 2017 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// ProgramPipelineVk.h:
// Defines the class interface for ProgramPipelineVk, implementing ProgramPipelineImpl.
//
#ifndef LIBANGLE_RENDERER_VULKAN_PROGRAMPIPELINEVK_H_
#define LIBANGLE_RENDERER_VULKAN_PROGRAMPIPELINEVK_H_
#include "libANGLE/renderer/ProgramPipelineImpl.h"
namespace rx
{
class ProgramPipelineVk : public ProgramPipelineImpl
{
public:
ProgramPipelineVk(const gl::ProgramPipelineState &state);
~ProgramPipelineVk() override;
};
} // namespace rx
#endif // LIBANGLE_RENDERER_VULKAN_PROGRAMPIPELINEVK_H_