()
| 2242 | |
| 2243 | |
| 2244 | protected boolean hasSynchronization() { |
| 2245 | int[] version = getGLVersion(); |
| 2246 | if (isES()) { |
| 2247 | return version[0] >= 3; |
| 2248 | } |
| 2249 | return (version[0] > 3) || (version[0] == 3 && version[1] >= 2); |
| 2250 | } |
| 2251 | |
| 2252 | |
| 2253 | protected boolean hasPBOs() { |
no test coverage detected