From af6e682f454025864c360a90759db40e15543027 Mon Sep 17 00:00:00 2001 From: Hudd Date: Tue, 13 Feb 2024 00:33:55 +0400 Subject: [PATCH] graphics: add missing AW_GRAPHICS_EXP Causes linker errors. --- graphics/include/aw/graphics/gl/shader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/include/aw/graphics/gl/shader.h b/graphics/include/aw/graphics/gl/shader.h index cdb4aed7..becc05d9 100644 --- a/graphics/include/aw/graphics/gl/shader.h +++ b/graphics/include/aw/graphics/gl/shader.h @@ -21,7 +21,7 @@ using gl::shader_handle; // — what infomation to store? // — if I make it possible to make invalid shader, do I also provide methods // to recompile shader? -struct shader { +struct AW_GRAPHICS_EXP shader { shader(gl::shader_type type); shader(gl::shader_type type, string_view source)