Commit b755e878 authored by Grant's avatar Grant
Browse files

Merge branch 'fix_background_color_with_template' into 'main'

Fix display of the canvas color when template is used

See merge request !11
parents 184fe59d e74c96f3
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -510,7 +510,11 @@ export class Template extends EventEmitter<TemplateEvents> {
          vec2 styleCoord = (indexCoord + subTexCoord) * styleSize;
          
          vec4 styleMask = vec4(1.0, 1.0, 1.0, texture2D(u_Style, styleCoord).a);
          if (texture2D(u_Style, styleCoord).a == 1.0) {
            gl_FragColor = vec4(templateSample.rgb, templateSample.a == PALETTE_TRANSPARENT ? 0.0 : 1.0) * styleMask;
          } else {
            gl_FragColor = vec4(0.0, 0.0, 0.0, 0.0);
          }
        }
      `
    );