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:
+9
-8
@@ -3,13 +3,11 @@ X fix exception due to version parsing in Java 9
|
||||
X https://github.com/processing/processing/issues/5275
|
||||
X remove useless deprecation on PImage.mask(int[])
|
||||
X set colorModeDefault to true by default
|
||||
_ add circle() and square()
|
||||
_ add push() and pop()
|
||||
|
||||
X blendMode() with PDF isn't showing the warning about it not being available
|
||||
X add blendMode() to nope() calls in PGraphicsPDF
|
||||
X https://github.com/processing/processing/issues/5105
|
||||
_ Table.insertRow()) causes ArrayIndexOutOfBoundsException (with fix)
|
||||
_ https://github.com/processing/processing/issues/5406
|
||||
_ blendMode() with PDF isn't showing the warning about it not being available
|
||||
_ https://github.com/processing/processing/issues/5105
|
||||
|
||||
data
|
||||
X added setIndex() method to IntDict, FloatDict, StringDict
|
||||
@@ -46,6 +44,12 @@ X https://github.com/processing/processing/pull/5354
|
||||
X Make un/registering methods in PApplet thread-saf
|
||||
X https://github.com/processing/processing/pull/5379
|
||||
|
||||
|
||||
3.4
|
||||
_ add circle() and square()
|
||||
_ add push() and pop()
|
||||
|
||||
|
||||
_ make setting the window icon automatic, based on files in local dirs
|
||||
X https://github.com/processing/processing/issues/5123
|
||||
X https://github.com/processing/processing/pull/5202
|
||||
@@ -70,9 +74,6 @@ _ when doing createFont, can we add it to the os fonts available?
|
||||
_ add separator option to loadTable()
|
||||
_ https://github.com/processing/processing/issues/5068
|
||||
|
||||
_ add blendMode() to nope() calls in PGraphicsPDF
|
||||
_ https://github.com/processing/processing/issues/5105
|
||||
|
||||
_ WARNING: GL pipe is running in software mode (Renderer ID=0x1020400)
|
||||
_ is this coming from us? if so, need to provide actions
|
||||
|
||||
|
||||
@@ -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