diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java
index 4fee1ea24..f59026969 100644
--- a/core/src/processing/core/PApplet.java
+++ b/core/src/processing/core/PApplet.java
@@ -1569,7 +1569,7 @@ public class PApplet implements PConstants {
*
* ( end auto-generated )
* @webref environment
- * @param renderer the renderer to use, e.g. P2D, P2D_2X, P3D...
+ * @param renderer the renderer to use, e.g. JAVA2D, JAVA2D_2X, P2D, P2D_2X, P3D, P3D_2X
* @see PApplet#settings()
* @see PApplet#setup()
* @see PApplet#size()
@@ -10657,7 +10657,7 @@ public class PApplet implements PConstants {
*
* ( end auto-generated )
*
- * @webref Rendering
+ * @webref rendering
* @param mode the blending mode to use
*/
public void blendMode(int mode) {
diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java
index fab3c63ff..5ac05cc78 100644
--- a/core/src/processing/core/PGraphics.java
+++ b/core/src/processing/core/PGraphics.java
@@ -1099,6 +1099,7 @@ public class PGraphics extends PImage implements PConstants {
* enabled or disabled.
*
* ( end auto-generated )
+ *
* @webref rendering
* @param which name of the hint to be enabled or disabled
* @see PGraphics
@@ -1953,7 +1954,7 @@ public class PGraphics extends PImage implements PConstants {
*
* ( end auto-generated )
*
- * @webref Rendering
+ * @webref rendering
* @param mode the blending mode to use
*/
public void blendMode(int mode) {
@@ -3559,53 +3560,6 @@ public class PGraphics extends PImage implements PConstants {
// SMOOTHING
-// /**
-// * If true in PImage, use bilinear interpolation for copy()
-// * operations. When inherited by PGraphics, also controls shapes.
-// */
-//
-// /**
-// * ( begin auto-generated from smooth.xml )
-// *
-// * Draws all geometry with smooth (anti-aliased) edges. This will sometimes
-// * slow down the frame rate of the application, but will enhance the visual
-// * refinement. Note that smooth() will also improve image quality of
-// * resized images, and noSmooth() will disable image (and font)
-// * smoothing altogether.
-// *
-// * ( end auto-generated )
-// *
-// * @webref shape:attributes
-// * @see PGraphics#noSmooth()
-// * @see PGraphics#hint(int)
-// * @see PApplet#size(int, int, String)
-// */
-// public void smooth() {
-// smooth = true;
-// }
-//
-// /**
-// *
-// * @param level either 2, 4, or 8
-// */
-// public void smooth(int level) {
-// smooth = true;
-// }
-//
-// /**
-// * ( begin auto-generated from noSmooth.xml )
-// *
-// * Draws all geometry with jagged (aliased) edges.
-// *
-// * ( end auto-generated )
-// * @webref shape:attributes
-// * @see PGraphics#smooth()
-// */
-// public void noSmooth() {
-// smooth = false;
-// }
-
-
final public void smooth() { // ignore
smooth(1);
}
@@ -3630,12 +3584,6 @@ public class PGraphics extends PImage implements PConstants {
final public void noSmooth() { // ignore
smooth(0);
- /*
- if (primarySurface) {
- parent.noSmooth();
- } else {
- }
- */
}
@@ -3644,6 +3592,7 @@ public class PGraphics extends PImage implements PConstants {
}
+
//////////////////////////////////////////////////////////////
// IMAGE