Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: gpu/vulkan/vulkan_shader_module.cc

Issue 1975183003: Added Vulkan Shader Modules with GLSL->SPIR-V translation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Check padding Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/vulkan/vulkan_shader_module.h ('k') | third_party/glslang/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "gpu/vulkan/vulkan_shader_module.h"
6
7 #include <memory>
8 #include <shaderc/shaderc.h>
9 #include <sstream>
10
11 #include "base/logging.h"
12 #include "base/memory/ptr_util.h"
13 #include "gpu/vulkan/vulkan_device_queue.h"
14
15 namespace {
16
17 class ShaderCCompiler {
18 public:
19 class CompilationResult {
20 public:
21 explicit CompilationResult(shaderc_compilation_result_t compilation_result)
22 : compilation_result_(compilation_result) {}
23
24 ~CompilationResult() { shaderc_result_release(compilation_result_); }
25
26 bool IsValid() const {
27 return shaderc_compilation_status_success ==
28 shaderc_result_get_compilation_status(compilation_result_);
29 }
30
31 std::string GetErrors() const {
32 return shaderc_result_get_error_message(compilation_result_);
33 }
34
35 std::string GetResult() const {
36 return std::string(shaderc_result_get_bytes(compilation_result_),
37 shaderc_result_get_length(compilation_result_));
38 }
39
40 private:
41 shaderc_compilation_result_t compilation_result_;
42 };
43
44 ShaderCCompiler()
45 : compiler_(shaderc_compiler_initialize()),
46 compiler_options_(shaderc_compile_options_initialize()) {}
47
48 ~ShaderCCompiler() { shaderc_compiler_release(compiler_); }
49
50 void AddMacroDef(const std::string& name, const std::string& value) {
51 shaderc_compile_options_add_macro_definition(compiler_options_,
52 name.c_str(), name.length(),
53 value.c_str(), value.length());
54 }
55
56 std::unique_ptr<ShaderCCompiler::CompilationResult> CompileShaderModule(
57 gpu::VulkanShaderModule::ShaderType shader_type,
58 const std::string& name,
59 const std::string& entry_point,
60 const std::string& source) {
61 return base::MakeUnique<ShaderCCompiler::CompilationResult>(
62 shaderc_compile_into_spv(
63 compiler_, source.c_str(), source.length(),
64 (shader_type == gpu::VulkanShaderModule::ShaderType::VERTEX
65 ? shaderc_glsl_vertex_shader
66 : shaderc_glsl_fragment_shader),
67 name.c_str(), entry_point.c_str(), compiler_options_));
68 }
69
70 private:
71 shaderc_compiler_t compiler_;
72 shaderc_compile_options_t compiler_options_;
73 };
74
75 } // namespace
76
77 namespace gpu {
78
79 VulkanShaderModule::VulkanShaderModule(VulkanDeviceQueue* device_queue)
80 : device_queue_(device_queue) {
81 DCHECK(device_queue_);
82 }
83
84 VulkanShaderModule::~VulkanShaderModule() {
85 DCHECK_EQ(static_cast<VkShaderModule>(VK_NULL_HANDLE), handle_);
86 }
87
88 bool VulkanShaderModule::InitializeGLSL(ShaderType type,
89 std::string name,
90 std::string entry_point,
91 std::string source) {
92 ShaderCCompiler shaderc_compiler;
93 std::unique_ptr<ShaderCCompiler::CompilationResult> compilation_result(
94 shaderc_compiler.CompileShaderModule(type, name, entry_point, source));
95
96 if (!compilation_result->IsValid()) {
97 error_messages_ = compilation_result->GetErrors();
98 return false;
99 }
100
101 return InitializeSPIRV(type, std::move(name), std::move(entry_point),
102 compilation_result->GetResult());
103 }
104
105 bool VulkanShaderModule::InitializeSPIRV(ShaderType type,
106 std::string name,
107 std::string entry_point,
108 std::string source) {
109 DCHECK_EQ(static_cast<VkShaderModule>(VK_NULL_HANDLE), handle_);
110 shader_type_ = type;
111 name_ = std::move(name);
112 entry_point_ = std::move(entry_point);
113
114 // Make sure source is a multiple of 4.
115 const int padding = 4 - (source.length() % 4);
116 if (padding < 4) {
117 for (int i = 0; i < padding; ++i) {
118 source += ' ';
119 }
120 }
121
122 VkShaderModuleCreateInfo shader_module_create_info = {};
123 shader_module_create_info.sType = VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO;
124 shader_module_create_info.pCode =
125 reinterpret_cast<const uint32_t*>(source.c_str());
126 shader_module_create_info.codeSize = source.length() / 4;
127
128 VkShaderModule shader_module = VK_NULL_HANDLE;
129 VkResult result =
130 vkCreateShaderModule(device_queue_->GetVulkanDevice(),
131 &shader_module_create_info, nullptr, &shader_module);
132 if (VK_SUCCESS != result) {
133 std::stringstream ss;
134 ss << "vkCreateShaderModule() failed: " << result;
135 error_messages_ = ss.str();
136 DLOG(ERROR) << error_messages_;
137 return false;
138 }
139
140 handle_ = shader_module;
141 return true;
142 }
143
144 void VulkanShaderModule::Destroy() {
145 if (handle_ != VK_NULL_HANDLE) {
146 vkDestroyShaderModule(device_queue_->GetVulkanDevice(), handle_, nullptr);
147 handle_ = VK_NULL_HANDLE;
148 }
149
150 entry_point_.clear();
151 error_messages_.clear();
152 }
153
154 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/vulkan/vulkan_shader_module.h ('k') | third_party/glslang/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698