MCPcopy Index your code
hub / github.com/benfry/processing4 / hasFboMultisampleSupport

Method hasFboMultisampleSupport

core/src/processing/opengl/PGL.java:2247–2255  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2245
2246
2247 protected boolean hasFboMultisampleSupport() {
2248 int major = getGLVersion()[0];
2249 if (major < 3) {
2250 String ext = getString(EXTENSIONS);
2251 return ext.contains("_framebuffer_multisample");
2252 } else {
2253 return true;
2254 }
2255 }
2256
2257
2258 protected boolean hasPackedDepthStencilSupport() {

Callers 2

createFBOLayerMethod · 0.95
getGLParametersMethod · 0.80

Calls 3

getGLVersionMethod · 0.95
getStringMethod · 0.95
containsMethod · 0.45

Tested by

no test coverage detected