MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ read_text_file()

std::string MayaFlux::Core::VKShaderModule::read_text_file ( const std::string &  filepath)
staticprivate

Read text file into string.

Parameters
filepathPath to file
Returns
File contents, or empty string on failure

Definition at line 692 of file VKShaderModule.cpp.

693{
694 std::ifstream file(filepath);
695 if (!file.is_open()) {
697 "Failed to open file: '{}'", filepath);
698 return {};
699 }
700
701 std::string content(
702 (std::istreambuf_iterator<char>(file)),
703 std::istreambuf_iterator<char>());
704
705 if (content.empty()) {
707 "File is empty: '{}'", filepath);
708 }
709
710 return content;
711}
#define MF_ERROR(comp, ctx,...)
#define MF_WARN(comp, ctx,...)
@ GraphicsBackend
Graphics/visual rendering backend (Vulkan, OpenGL)
@ Core
Core engine, backend, subsystems.

References MayaFlux::Journal::Core, MayaFlux::Journal::GraphicsBackend, MF_ERROR, and MF_WARN.

Referenced by create_from_glsl_file().

+ Here is the caller graph for this function: