you should be able to apply the same texture to several shapes, i.e.:
- beginShape(QUADS);
- texture(tex);
- ...
- endShape();
- beginShape(QUAD_STRIP)
- texture(tex); // same texture object as before
- ...
- endShape();
Is this not working in your sketch?