Home
last modified time | relevance | path

Searched refs:Batch (Results 1 – 25 of 75) sorted by relevance

123

/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
DBatchTiledMapRenderer.java19 import static com.badlogic.gdx.graphics.g2d.Batch.C1;
20 import static com.badlogic.gdx.graphics.g2d.Batch.C2;
21 import static com.badlogic.gdx.graphics.g2d.Batch.C3;
22 import static com.badlogic.gdx.graphics.g2d.Batch.C4;
23 import static com.badlogic.gdx.graphics.g2d.Batch.U1;
24 import static com.badlogic.gdx.graphics.g2d.Batch.U2;
25 import static com.badlogic.gdx.graphics.g2d.Batch.U3;
26 import static com.badlogic.gdx.graphics.g2d.Batch.U4;
27 import static com.badlogic.gdx.graphics.g2d.Batch.V1;
28 import static com.badlogic.gdx.graphics.g2d.Batch.V2;
[all …]
DOrthogonalTiledMapRenderer.java19 import static com.badlogic.gdx.graphics.g2d.Batch.C1;
20 import static com.badlogic.gdx.graphics.g2d.Batch.C2;
21 import static com.badlogic.gdx.graphics.g2d.Batch.C3;
22 import static com.badlogic.gdx.graphics.g2d.Batch.C4;
23 import static com.badlogic.gdx.graphics.g2d.Batch.U1;
24 import static com.badlogic.gdx.graphics.g2d.Batch.U2;
25 import static com.badlogic.gdx.graphics.g2d.Batch.U3;
26 import static com.badlogic.gdx.graphics.g2d.Batch.U4;
27 import static com.badlogic.gdx.graphics.g2d.Batch.V1;
28 import static com.badlogic.gdx.graphics.g2d.Batch.V2;
[all …]
DIsometricTiledMapRenderer.java19 import static com.badlogic.gdx.graphics.g2d.Batch.*;
22 import com.badlogic.gdx.graphics.g2d.Batch;
48 public IsometricTiledMapRenderer (TiledMap map, Batch batch) { in IsometricTiledMapRenderer()
58 public IsometricTiledMapRenderer (TiledMap map, float unitScale, Batch batch) { in IsometricTiledMapRenderer()
DHexagonalTiledMapRenderer.java19 import static com.badlogic.gdx.graphics.g2d.Batch.*;
22 import com.badlogic.gdx.graphics.g2d.Batch;
51 public HexagonalTiledMapRenderer (TiledMap map, Batch batch) { in HexagonalTiledMapRenderer()
56 public HexagonalTiledMapRenderer (TiledMap map, float unitScale, Batch batch) { in HexagonalTiledMapRenderer()
DIsometricStaggeredTiledMapRenderer.java22 import com.badlogic.gdx.graphics.g2d.Batch;
35 public IsometricStaggeredTiledMapRenderer (TiledMap map, Batch batch) { in IsometricStaggeredTiledMapRenderer()
43 public IsometricStaggeredTiledMapRenderer (TiledMap map, float unitScale, Batch batch) { in IsometricStaggeredTiledMapRenderer()
/external/skia/src/gpu/
DGrBatchTest.h27 #define DRAW_BATCH_TEST_DEFINE(Batch) \ argument
28 GrDrawBatch* Batch##__Test(SkRandom* random, GrContext* context)
29 #define DRAW_BATCH_TEST_EXTERN(Batch) \ argument
30 extern GrDrawBatch* Batch##__Test(SkRandom*, GrContext* context);
31 #define DRAW_BATCH_TEST_ENTRY(Batch) \ argument
32 Batch##__Test
33 #define DRAW_BATCH_TEST_FRIEND(Batch) \ argument
34 friend GrDrawBatch* Batch##__Test(SkRandom* random, GrContext* context);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/dynamodb/
Dtest_batch.py25 from boto.dynamodb.batch import Batch
69 b = Batch(self.table, ['k1', 'k2'], attributes_to_get=['foo'],
80 b = Batch(self.table, ['k1'])
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator.h319 typedef typename SizeClassMap::TransferBatch Batch; typedef
345 NOINLINE Batch* AllocateBatch(AllocatorStats *stat, AllocatorCache *c, in AllocateBatch()
349 Batch *b = region->free_list.Pop(); in AllocateBatch()
356 NOINLINE void DeallocateBatch(AllocatorStats *stat, uptr class_id, Batch *b) { in DeallocateBatch()
493 LFStack<Batch> free_list;
517 NOINLINE Batch* PopulateFreeList(AllocatorStats *stat, AllocatorCache *c, in PopulateFreeList()
520 Batch *b = region->free_list.Pop(); in PopulateFreeList()
560 b = (Batch*)c->Allocate(this, SizeClassMap::ClassID(sizeof(Batch))); in PopulateFreeList()
562 b = (Batch*)(region_beg + beg_idx); in PopulateFreeList()
692 typedef typename SizeClassMap::TransferBatch Batch; typedef
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
DBatchNode.java75 protected Map<Material, Batch> batches = new HashMap<Material, Batch>();
120 for (Batch batch : batches.values()) { in updateGeometricState()
144 Batch batch = batches.get(bg.getMaterial()); in updateSubBatch()
177 for (Batch batch : batches.values()) { in batch()
189 for (Batch batch : batches.values()) { in doBatch()
204 Batch batch = new Batch(); in doBatch()
260 for (Batch batch : batches.values()) { in isBatch()
293 Batch b = batches.get(batches.keySet().iterator().next()); in getMaterial()
641 protected class Batch { class in BatchNode
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
DTextureRegionDrawable.java20 import com.badlogic.gdx.graphics.g2d.Batch;
44 public void draw (Batch batch, float x, float y, float width, float height) { in draw()
48 …public void draw (Batch batch, float x, float y, float originX, float originY, float width, float … in draw()
DTransformDrawable.java4 import com.badlogic.gdx.graphics.g2d.Batch;
8 …public void draw (Batch batch, float x, float y, float originX, float originY, float width, float … in draw()
DDrawable.java19 import com.badlogic.gdx.graphics.g2d.Batch;
27 public void draw (Batch batch, float x, float y, float width, float height); in draw()
DSpriteDrawable.java20 import com.badlogic.gdx.graphics.g2d.Batch;
42 public void draw (Batch batch, float x, float y, float width, float height) { in draw()
56 …public void draw (Batch batch, float x, float y, float originX, float originY, float width, float … in draw()
DNinePatchDrawable.java20 import com.badlogic.gdx.graphics.g2d.Batch;
48 public void draw (Batch batch, float x, float y, float width, float height) { in draw()
DBaseDrawable.java19 import com.badlogic.gdx.graphics.g2d.Batch;
42 public void draw (Batch batch, float x, float y, float width, float height) { in draw()
DTiledDrawable.java21 import com.badlogic.gdx.graphics.g2d.Batch;
41 public void draw (Batch batch, float x, float y, float width, float height) { in draw()
/external/skia/include/private/
DGrAuditTrail.h88 Batch* batch = new Batch; in addBatch()
117 struct Batch : public Event { struct
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
DDistanceFieldFont.java157 private void setSmoothingUniform (Batch spriteBatch, float smoothing) { in setSmoothingUniform()
163 public void draw (Batch spriteBatch) { in draw()
170 public void draw (Batch spriteBatch, int start, int end) { in draw()
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
DWidget.java19 import com.badlogic.gdx.graphics.g2d.Batch;
121 public void draw (Batch batch, float parentAlpha) { in draw()
DWidgetGroup.java19 import com.badlogic.gdx.graphics.g2d.Batch;
161 public void draw (Batch batch, float parentAlpha) { in draw()
DCheckBox.java20 import com.badlogic.gdx.graphics.g2d.Batch;
62 public void draw (Batch batch, float parentAlpha) { in draw()
DWindow.java22 import com.badlogic.gdx.graphics.g2d.Batch;
72 public void draw (Batch batch, float parentAlpha) { in Window()
230 public void draw (Batch batch, float parentAlpha) { in draw()
246 …protected void drawStageBackground (Batch batch, float parentAlpha, float x, float y, float width,… in drawStageBackground()
252 protected void drawBackground (Batch batch, float parentAlpha, float x, float y) { in drawBackground()
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
DCpuSpriteBatchTest.java24 import com.badlogic.gdx.graphics.g2d.Batch;
50 public void draw (Batch batch, float parentAlpha) { in draw()
67 Batch batch = new CpuSpriteBatch(); in create()
DGroupCullingTest.java21 import com.badlogic.gdx.graphics.g2d.Batch;
55 public void draw (Batch batch, float parentAlpha) { in create()
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
DGroup.java19 import com.badlogic.gdx.graphics.g2d.Batch;
55 public void draw (Batch batch, float parentAlpha) { in draw()
65 protected void drawChildren (Batch batch, float parentAlpha) { in drawChildren()
202 protected void applyTransform (Batch batch, Matrix4 transform) { in applyTransform()
209 protected void resetTransform (Batch batch) { in resetTransform()

123