373839404142434445464748
else g.translate(_x,_y); g.rotate(_rotationZRad); alphaPc *= _alphaPc; HDrawable child = _firstChild; while(child != null) { child.paintAll(g, usesZ, alphaPc); child = child.next(); } g.popMatrix(); }
279280281282283284285286287288289290291292
0,0, _graphics.width,_graphics.height, _blendMode); } } // Draw children HDrawable child = _firstChild; while(child != null) { child.paintAll(_graphics, usesZ(), alphaPc); child = child.next(); } // Finalize the buffer _graphics.endDraw();
166167168169170171172173174175176
HWarnings.warn("No Prototype", "HDrawablePool.request()", HWarnings.NO_PROTOTYPE); return null; } HDrawable drawable; boolean onCreateFlag = false; if(_inactiveSet.size() > 0) { drawable = _inactiveSet.pull(); } else if(count() < _max) {