mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
show warning when using blendMode() with PDF (fixes #5105)
This commit is contained in:
@@ -550,6 +550,14 @@ public class PGraphicsPDF extends PGraphicsJava2D {
|
||||
|
||||
//
|
||||
|
||||
protected void blendModeImpl() {
|
||||
if (blendMode != BLEND) {
|
||||
nope("blendMode");
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
|
||||
public void copy(int sx1, int sy1, int sx2, int sy2,
|
||||
int dx1, int dy1, int dx2, int dy2) {
|
||||
nope("copy");
|
||||
|
||||
Reference in New Issue
Block a user