aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src/renderer
diff options
context:
space:
mode:
authorKirill Chibisov <contact@kchibisov.com>2023-05-16 07:34:03 +0300
committerKirill Chibisov <contact@kchibisov.com>2023-05-17 08:36:41 +0300
commitb1feba6916f1ccf57b0a76914946c112ec2195a2 (patch)
treefe2733e74dae013dcb4fdb22b7f933662901c685 /alacritty/src/renderer
parenta6488a3e5edf1ac25c522e037c75b9d17e6bc3c6 (diff)
downloadr-alacritty-b1feba6916f1ccf57b0a76914946c112ec2195a2.tar.gz
r-alacritty-b1feba6916f1ccf57b0a76914946c112ec2195a2.tar.bz2
r-alacritty-b1feba6916f1ccf57b0a76914946c112ec2195a2.zip
Update bitflags to 2.2.1
Diffstat (limited to 'alacritty/src/renderer')
-rw-r--r--alacritty/src/renderer/text/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty/src/renderer/text/mod.rs b/alacritty/src/renderer/text/mod.rs
index 228d2671..886b7f8b 100644
--- a/alacritty/src/renderer/text/mod.rs
+++ b/alacritty/src/renderer/text/mod.rs
@@ -23,6 +23,7 @@ use glyph_cache::{Glyph, LoadGlyph};
// NOTE: These flags must be in sync with their usage in the text.*.glsl shaders.
bitflags! {
#[repr(C)]
+ #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
struct RenderingGlyphFlags: u8 {
const COLORED = 0b0000_0001;
const WIDE_CHAR = 0b0000_0010;