MCPcopy Index your code
hub / github.com/processing/processing / texturingIsEnabled

Method texturingIsEnabled

core/src/processing/opengl/PGL.java:1170–1178  ·  view source on GitHub ↗
(int target)

Source from the content-addressed store, hash-verified

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) {

Callers 10

bindFrontTextureMethod · 0.95
unbindFrontTextureMethod · 0.95
copyToTextureMethod · 0.95
drawTexture2DMethod · 0.95
drawTextureRectMethod · 0.95
setMethod · 0.80
setNativeMethod · 0.80
bindMethod · 0.80
unbindMethod · 0.80
allocateMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected