mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
add missing @Override annotation to get rid of warning
This commit is contained in:
@@ -503,12 +503,15 @@ public class PJOGL extends PGL {
|
||||
return ((Font) font).deriveFont(size);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected int getGLSLVersion() {
|
||||
VersionNumber vn = context.getGLSLVersionNumber();
|
||||
return vn.getMajor() * 100 + vn.getMinor();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected String getGLSLVersionSuffix() {
|
||||
if (context.isGLESProfile()) {
|
||||
return " es";
|
||||
|
||||
Reference in New Issue
Block a user