add missing @Override annotation to get rid of warning

This commit is contained in:
Ben Fry
2018-04-24 16:55:57 -04:00
parent 0a31aa2b71
commit 65cc40a5fb
+3
View File
@@ -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";