From 4d13e18f5e27f487145db03594d3e67fad0eccc6 Mon Sep 17 00:00:00 2001 From: Jakub Valtar Date: Thu, 24 Sep 2015 23:20:45 -0400 Subject: [PATCH] Correct hint documentation --- core/src/processing/core/PGraphics.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java index 211c0c71e..6ed48dc90 100644 --- a/core/src/processing/core/PGraphics.java +++ b/core/src/processing/core/PGraphics.java @@ -1112,18 +1112,18 @@ public class PGraphics extends PImage implements PConstants { * hint(DISABLE_OPENGL_ERROR_REPORT) - Speeds up the P3D renderer setting * by not checking for errors while running. Undo with hint(ENABLE_OPENGL_ERROR_REPORT). *

- * hint(ENABLE_DEPTH_READING) - Depth and stencil buffers in P2D/P3D will be + * hint(ENABLE_BUFFER_READING) - Depth and stencil buffers in P2D/P3D will be * downsampled to make PGL#readPixels work with multisampling. Enabling this * introduces some overhead, so if you experience bad performance, disable * multisampling with noSmooth() instead. This hint is not intended to be * enabled and disabled repeatedely, so call this once in setup() or after * creating your PGraphics2D/3D. You can restore the default with - * hint(DISABLE_DEPTH_READING) if you don't plan to read depth from + * hint(DISABLE_BUFFER_READING) if you don't plan to read depth from * this PGraphics anymore. *

- * hint(ENABLE_KEY_AUTO_REPEAT) - Auto-repeating key events are discarded + * hint(ENABLE_KEY_REPEAT) - Auto-repeating key events are discarded * by default (works only in P2D/P3D); use this hint to get all the key events - * (including auto-repeated). Call hint(DISABLE_KEY_AUTO_REPEAT) to get events + * (including auto-repeated). Call hint(DISABLE_KEY_REPEAT) to get events * only when the key goes physically up or down. *

* As of release 0149, unhint() has been removed in favor of adding