(int target)
| 1168 | |
| 1169 | |
| 1170 | protected boolean texturingIsEnabled(int target) { |
| 1171 | if (target == TEXTURE_2D) { |
| 1172 | return texturingTargets[0]; |
| 1173 | } else if (target == TEXTURE_RECTANGLE) { |
| 1174 | return texturingTargets[1]; |
| 1175 | } else { |
| 1176 | return false; |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | |
| 1181 | protected boolean textureIsBound(int target, int id) { |
no outgoing calls
no test coverage detected