From a41b15850d6815d32285007b5684a5cf2e42539f Mon Sep 17 00:00:00 2001 From: Humphrey Shotton <1696213+Humpheh@users.noreply.github.com> Date: Sun, 14 Mar 2021 17:14:03 +0000 Subject: [PATCH] internal/graphicscommand: fix missing graphicscommand log (#1543) Closes #1544 --- internal/graphicscommand/command.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/graphicscommand/command.go b/internal/graphicscommand/command.go index e5a1416b8..bb08c6e38 100644 --- a/internal/graphicscommand/command.go +++ b/internal/graphicscommand/command.go @@ -344,6 +344,8 @@ func (c *drawTrianglesCommand) String() string { mode = "xor" case driver.CompositeModeLighter: mode = "lighter" + case driver.CompositeModeMultiply: + mode = "multiply" default: panic(fmt.Sprintf("graphicscommand: invalid composite mode: %d", c.mode)) }