From 256be6dae01ddad772a032220f6b2a4cc8ab58f9 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/glutils/src/glutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/glutils/src/glutils.cpp b/deps/glutils/src/glutils.cpp index d84f40bf..c02f9f7e 100644 --- a/deps/glutils/src/glutils.cpp +++ b/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);