From cb9417c29f520264b1d6395216e2dcf624eebd04 Mon Sep 17 00:00:00 2001 From: Bernie Innocenti Date: Wed, 21 Jun 2017 00:51:46 -0400 Subject: [PATCH] Use a regular float texture for the font. Unsigned textures silently fail with Intel... &#@@?! --- main.rs | 1 + text.rs | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/main.rs b/main.rs index a55b7e4..d4e38b7 100644 --- a/main.rs +++ b/main.rs @@ -72,6 +72,7 @@ fn main() { .with_srgb(Some(true)) .with_title(format!("MandelWow")) .build_glium() + //.build_glium_debug(glium::debug::DebugCallbackBehavior::PrintAll) .unwrap(); gl_info(&display); diff --git a/text.rs b/text.rs index 82d4d17..bf19aa2 100644 --- a/text.rs +++ b/text.rs @@ -13,7 +13,7 @@ struct Vertex { implement_vertex!(Vertex, position, tex_coords); pub struct Text<'a> { - tex: texture::UnsignedTexture2d, + tex: texture::Texture2d, vertex_buffer: glium::VertexBuffer, index_buffer: glium::IndexBuffer, program: glium::Program, @@ -34,10 +34,10 @@ impl<'a> Text<'a> { height: h, format: glium::texture::ClientFormat::U8, }; - let tex = glium::texture::UnsignedTexture2d::with_format( + let tex = glium::texture::Texture2d::with_format( display, image, - glium::texture::UncompressedUintFormat::U8, + glium::texture::UncompressedFloatFormat::U8, glium::texture::MipmapsOption::NoMipmap, ).unwrap(); @@ -94,13 +94,13 @@ impl<'a> Text<'a> { // Characters are arranged in a 16x16 square. int xpos = index % 16; int ypos = index / 16; - v_tex_coords = (tex_coords) / 16.0 + vec2(xpos / 16., ypos / 16.); + v_tex_coords = (tex_coords + vec2(xpos, ypos)) / 16.; } ", fragment: " #version 140 - uniform usampler2D tex; + uniform sampler2D tex; uniform vec4 bgcolor; uniform vec4 fgcolor; -- 2.25.1