(int target)
| 1211 | |
| 1212 | |
| 1213 | protected boolean texturingIsEnabled(int target) { |
| 1214 | if (target == TEXTURE_2D) { |
| 1215 | return texturingTargets[0]; |
| 1216 | } else if (target == TEXTURE_RECTANGLE) { |
| 1217 | return texturingTargets[1]; |
| 1218 | } else { |
| 1219 | return false; |
| 1220 | } |
| 1221 | } |
| 1222 | |
| 1223 | |
| 1224 | protected boolean textureIsBound(int target, int id) { |
no outgoing calls
no test coverage detected