aboutsummaryrefslogtreecommitdiff
path: root/evc/src/debug.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-12-17 18:01:51 +0100
committermetamuffin <metamuffin@disroot.org>2022-12-17 18:01:51 +0100
commit0a346b8372140b56bf65a6df1c00e2cd6c6cdf86 (patch)
treee52234d5904939323e19586128d8ac2d345e450e /evc/src/debug.rs
parent82eedf3594bf21c8b780580050a95f0bdb5fd667 (diff)
downloadvideo-codec-experiments-0a346b8372140b56bf65a6df1c00e2cd6c6cdf86.tar
video-codec-experiments-0a346b8372140b56bf65a6df1c00e2cd6c6cdf86.tar.bz2
video-codec-experiments-0a346b8372140b56bf65a6df1c00e2cd6c6cdf86.tar.zst
small optimizations and info binary
Diffstat (limited to 'evc/src/debug.rs')
-rw-r--r--evc/src/debug.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/evc/src/debug.rs b/evc/src/debug.rs
index 99723b8..c3ea7d0 100644
--- a/evc/src/debug.rs
+++ b/evc/src/debug.rs
@@ -64,7 +64,7 @@ impl Pixel {
pub fn draw_debug(block: &Block, mut target: View<&mut Frame>) {
match &block {
- Block::Literal(_) => {
+ Block::Literal(_) | Block::CompressedLiteral(_) => {
target.draw_box(Pixel::GREEN);
}
Block::Split(box [a, b]) => {