mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
@@ -623,24 +623,30 @@ public class PGraphics3D extends PGraphics {
|
||||
// if true, the shapes will be rendered on endDraw
|
||||
if (!hints[ENABLE_DEPTH_SORT]) {
|
||||
if (fill) {
|
||||
renderTriangles(0, triangleCount);
|
||||
if (raw != null) {
|
||||
rawTriangles(0, triangleCount);
|
||||
if (triangleCount > 0) {
|
||||
renderTriangles(0, triangleCount);
|
||||
if (raw != null) {
|
||||
rawTriangles(0, triangleCount);
|
||||
}
|
||||
triangleCount = 0;
|
||||
}
|
||||
triangleCount = 0;
|
||||
}
|
||||
if (stroke) {
|
||||
renderPoints(0, pointCount);
|
||||
if (raw != null) {
|
||||
rawPoints(0, pointCount);
|
||||
if (pointCount > 0) {
|
||||
renderPoints(0, pointCount);
|
||||
if (raw != null) {
|
||||
rawPoints(0, pointCount);
|
||||
}
|
||||
pointCount = 0;
|
||||
}
|
||||
pointCount = 0;
|
||||
|
||||
renderLines(0, lineCount);
|
||||
if (raw != null) {
|
||||
rawLines(0, lineCount);
|
||||
if (lineCount > 0) {
|
||||
renderLines(0, lineCount);
|
||||
if (raw != null) {
|
||||
rawLines(0, lineCount);
|
||||
}
|
||||
lineCount = 0;
|
||||
}
|
||||
lineCount = 0;
|
||||
}
|
||||
pathCount = 0;
|
||||
}
|
||||
|
||||
@@ -22,6 +22,9 @@ X http://dev.processing.org/bugs/show_bug.cgi?id=1110
|
||||
X nextPage() not working properly with PDF as the renderer
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1131
|
||||
X save styles when nextPage() is called
|
||||
X beginRaw() broken (no DXF, etc working)
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1099
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=1144
|
||||
|
||||
invalid/wontfix/dupe
|
||||
X Processing will not start with non-standard disk partitioning on OS X
|
||||
|
||||
Reference in New Issue
Block a user