diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-11-22 13:52:59 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-11-22 13:52:59 -0600 |
| commit | 355e6ad2c8c8ce887ede431d5f2b66485b205bd0 (patch) | |
| tree | fad6ac5c06dd2c8289658638dce3211063c539f9 | |
| parent | 3dbdf5f757575ac4522bdaa8e06aef7db3e37728 (diff) | |
rtl/gfx: fix mask clear
Diffstat (limited to '')
| -rw-r--r-- | rtl/gfx/gfx_cmd.sv | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rtl/gfx/gfx_cmd.sv b/rtl/gfx/gfx_cmd.sv index 85e99a2..29b6e21 100644 --- a/rtl/gfx/gfx_cmd.sv +++ b/rtl/gfx/gfx_cmd.sv @@ -70,6 +70,8 @@ module gfx_cmd start_clear <= next_start_clear; enable_clear <= next_enable_clear; swap_buffers <= next_swap_buffers; + + next_start_clear <= 0; end if (cmd_write) |
