From 21858a1f1dfb823a0f0d86d1b87a0b4168ad0944 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 28 Sep 2024 16:10:16 -0500 Subject: [PATCH] [glutils] Rename CRStringView to StringViewCR --- deps/nostalgia/deps/glutils/src/glutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/nostalgia/deps/glutils/src/glutils.cpp b/deps/nostalgia/deps/glutils/src/glutils.cpp index d84f40b..c02f9f7 100644 --- a/deps/nostalgia/deps/glutils/src/glutils.cpp +++ b/deps/nostalgia/deps/glutils/src/glutils.cpp @@ -73,7 +73,7 @@ void bind(const FrameBuffer &fb) noexcept { static ox::Result buildShader( GLuint shaderType, const GLchar *src, - ox::CRStringView shaderName) noexcept { + ox::StringViewCR shaderName) noexcept { GLShader shader(glCreateShader(shaderType)); glShaderSource(shader, 1, &src, nullptr); glCompileShader(shader);