diff --git a/bootstrap/bloat-buster/bb_core.c b/bootstrap/bloat-buster/bb_core.c index fe0ec28..e18bfcb 100644 --- a/bootstrap/bloat-buster/bb_core.c +++ b/bootstrap/bloat-buster/bb_core.c @@ -49,35 +49,37 @@ fn void draw_string(Renderer* renderer, VirtualBuffer(Vertex)* vertices, Virtual auto uv_width = character->width; auto uv_height = character->height; + print("UV x: {u32}. UV y: {u32}\n", uv_x, uv_y); + *vb_add(vertices, 1) = (Vertex) { .x = pos_x, .y = pos_y, - .uv_x = (f32)uv_x / texture_atlas.width, - .uv_y = (f32)uv_y / texture_atlas.width, + .uv_x = (f32)uv_x, + .uv_y = (f32)uv_y, .color = color, .texture_index = texture_index, }; *vb_add(vertices, 1) = (Vertex) { .x = pos_x + character->width, .y = pos_y, - .uv_x = (f32)(uv_x + uv_width) / texture_atlas.width, - .uv_y = (f32)uv_y / texture_atlas.width, + .uv_x = (f32)(uv_x + uv_width), + .uv_y = (f32)uv_y, .color = color, .texture_index = texture_index, }; *vb_add(vertices, 1) = (Vertex) { .x = pos_x, .y = pos_y + character->height, - .uv_x = (f32)uv_x / texture_atlas.width, - .uv_y = (f32)(uv_y + uv_height) / texture_atlas.width, + .uv_x = (f32)uv_x, + .uv_y = (f32)(uv_y + uv_height), .color = color, .texture_index = texture_index, }; *vb_add(vertices, 1) = (Vertex) { .x = pos_x + character->width, .y = pos_y + character->height, - .uv_x = (f32)(uv_x + uv_width) / texture_atlas.width, - .uv_y = (f32)(uv_y + uv_height) / texture_atlas.width, + .uv_x = (f32)(uv_x + uv_width), + .uv_y = (f32)(uv_y + uv_height), .color = color, .texture_index = texture_index, }; diff --git a/bootstrap/shaders/font.frag b/bootstrap/shaders/font.frag index 3a8cb5c..d3bb2dd 100644 --- a/bootstrap/shaders/font.frag +++ b/bootstrap/shaders/font.frag @@ -1,10 +1,10 @@ #version 450 #extension GL_EXT_nonuniform_qualifier : require - +#extension GL_EXT_debug_printf : require //shader input layout (location = 0) in vec4 in_color; -layout (location = 1) in vec2 in_uv; +layout (location = 1) in vec2 in_screen_uv; layout (location = 2) in flat uint texture_index; //output write @@ -14,6 +14,9 @@ layout(set = 0, binding = 0) uniform sampler2D textures[]; void main() { - vec4 sampled = texture(textures[texture_index], in_uv); + vec2 texture_size = textureSize(textures[texture_index], 0); + //debugPrintfEXT("texture uv: (%f, %f)\n", in_screen_uv.x, in_screen_uv.y); + vec2 uv = vec2(in_screen_uv.x / texture_size.x, in_screen_uv.y / texture_size.y); + vec4 sampled = texture(textures[texture_index], uv); out_frag_color = in_color * sampled; } diff --git a/bootstrap/std/render.c b/bootstrap/std/render.c index 4096978..eef0276 100644 --- a/bootstrap/std/render.c +++ b/bootstrap/std/render.c @@ -547,7 +547,7 @@ Renderer* renderer_initialize() .pUserData = 0, }; - u8 enable_shader_debug_printf = 0; + u8 enable_shader_debug_printf = BB_DEBUG; VkValidationFeaturesEXT validation_features = { .sType = VK_STRUCTURE_TYPE_VALIDATION_FEATURES_EXT,