(int target)
| 1202 | |
| 1203 | |
| 1204 | protected void disableTexturing(int target) { |
| 1205 | if (target == TEXTURE_2D) { |
| 1206 | texturingTargets[0] = false; |
| 1207 | } else if (target == TEXTURE_RECTANGLE) { |
| 1208 | texturingTargets[1] = false; |
| 1209 | } |
| 1210 | } |
| 1211 | |
| 1212 | |
| 1213 | protected boolean texturingIsEnabled(int target) { |
no outgoing calls
no test coverage detected