summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-10-09 01:06:02 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-10-09 01:06:02 +0200
commit70dc294b8ac3a62b9c61a75e0aec3064eef72122 (patch)
treeb687d0676f90051dc35f6938b2c8c151f9ed6966 /src
parent23529e7ab310764cdf1b99015fce0814b4955210 (diff)
a
Diffstat (limited to 'src')
-rw-r--r--src/wireframe-mesh.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/wireframe-mesh.cpp b/src/wireframe-mesh.cpp
index 03378c02..843bc760 100644
--- a/src/wireframe-mesh.cpp
+++ b/src/wireframe-mesh.cpp
@@ -14,9 +14,10 @@ namespace Magnum::Examples::wireframe
GL::RectangleTexture wireframe::null::make_constant_texture()
{
- Trade::ImageData2D img{PixelStorage{}.setImageHeight(1).setRowLength(1),
- PixelFormat::RGBA8UI, {1, 1},
- Containers::Array<char>{Corrade::DirectInit, 4, (char)(unsigned char)255}};
+ const Vector4ub pixel{255, 255, 255, 255};
+ Trade::ImageData2D img{PixelStorage{}.setImageHeight(1).setRowLength(1).setAlignment(1),
+ PixelFormat::RGBA8Unorm, {1, 1}, {},
+ Containers::arrayView(&pixel, 1), {}, {}};
GL::RectangleTexture tex;
tex.setWrapping(GL::SamplerWrapping::ClampToEdge)
.setMagnificationFilter(GL::SamplerFilter::Nearest)
@@ -59,7 +60,7 @@ template <wireframe::traits T> void wireframe_mesh<T>::draw(tile_shader& shader,
{
GL::Renderer::setLineWidth(2);
_vertex_buffer.setData(x.make_vertex_array(), GL::BufferUsage::DynamicDraw);
- _texture.bind(0);
+ //_texture.bind(0);
shader.draw(_mesh);
}