2021-05-05 05:19:08 +00:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2021-05-07 09:31:30 +00:00
|
|
|
#include "shader_recompiler/backend/glasm/emit_context.h"
|
2021-05-08 19:28:52 +00:00
|
|
|
#include "shader_recompiler/frontend/ir/program.h"
|
2021-05-05 05:19:08 +00:00
|
|
|
|
2021-05-07 09:31:30 +00:00
|
|
|
namespace Shader::Backend::GLASM {
|
|
|
|
|
2021-05-08 19:28:52 +00:00
|
|
|
EmitContext::EmitContext(IR::Program& program) {
|
|
|
|
// FIXME: Temporary partial implementation
|
|
|
|
u32 cbuf_index{};
|
|
|
|
for (const auto& desc : program.info.constant_buffer_descriptors) {
|
|
|
|
if (desc.count != 1) {
|
|
|
|
throw NotImplementedException("Constant buffer descriptor array");
|
|
|
|
}
|
|
|
|
Add("CBUFFER c{}[]={{program.buffer[{}]}};", desc.index, cbuf_index);
|
|
|
|
++cbuf_index;
|
|
|
|
}
|
|
|
|
for (const auto& desc : program.info.storage_buffers_descriptors) {
|
|
|
|
if (desc.count != 1) {
|
|
|
|
throw NotImplementedException("Storage buffer descriptor array");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (const size_t num = program.info.storage_buffers_descriptors.size(); num > 0) {
|
|
|
|
Add("PARAM c[{}]={{program.local[0..{}]}};", num, num - 1);
|
|
|
|
}
|
|
|
|
}
|
2021-05-07 09:31:30 +00:00
|
|
|
|
|
|
|
} // namespace Shader::Backend::GLASM
|