MayaFlux 0.4.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 770 of file VKShaderModule.cpp.

771{
772 std::ifstream file(filepath);
773 if (!file.is_open()) {
775 "Failed to open file: '{}'", filepath);
776 return {};
777 }
778
779 std::string content(
780 (std::istreambuf_iterator<char>(file)),
781 std::istreambuf_iterator<char>());
782
783 if (content.empty()) {
785 "File is empty: '{}'", filepath);
786 }
787
788 return content;
789}
#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: