MayaFlux 0.3.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 713 of file VKShaderModule.cpp.

714{
715 std::ifstream file(filepath);
716 if (!file.is_open()) {
718 "Failed to open file: '{}'", filepath);
719 return {};
720 }
721
722 std::string content(
723 (std::istreambuf_iterator<char>(file)),
724 std::istreambuf_iterator<char>());
725
726 if (content.empty()) {
728 "File is empty: '{}'", filepath);
729 }
730
731 return content;
732}
#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: