summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_shader_util.h
blob: 98ee5e66843fd75f16320ad3faf51f69f325fb31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2018 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <span>

#include "common/common_types.h"
#include "video_core/vulkan_common/vulkan_wrapper.h"

namespace Vulkan {

class VKDevice;

vk::ShaderModule BuildShader(const VKDevice& device, std::span<const u32> code);

} // namespace Vulkan