mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
draw/readBuffer are available in GL 2.0 and higher on desktop
This commit is contained in:
@@ -2193,7 +2193,7 @@ public abstract class PGL {
|
||||
if (isES()) {
|
||||
return version[0] >= 3;
|
||||
}
|
||||
return version[0] > 2;
|
||||
return version[0] >= 2;
|
||||
}
|
||||
|
||||
|
||||
@@ -2202,7 +2202,7 @@ public abstract class PGL {
|
||||
if (isES()) {
|
||||
return version[0] >= 3;
|
||||
}
|
||||
return version[0] > 2;
|
||||
return version[0] >= 2;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user