HomeSort by relevance Sort by last modified time
    Searched defs:box (Results 51 - 75 of 164) sorted by null

1 23 4 5 6 7

  /external/jmonkeyengine/engine/src/test/jme3test/tools/
TestOctree.java 68 private WireBox box = new WireBox(1,1,1); field in class:TestOctree
155 // tree.renderBounds(rq, transform, box, mat);
  /external/mesa3d/src/gallium/auxiliary/util/
u_inlines.h 261 struct pipe_box box; local
268 u_box_1d(offset, length, &box);
274 &box);
316 struct pipe_box box; local
320 assert(transfer->box.x <= offset);
321 assert(offset + length <= transfer->box.x + transfer->box.width);
327 transfer_offset = offset - transfer->box.x;
329 u_box_1d(transfer_offset, length, &box);
331 pipe->transfer_flush_region(pipe, transfer, &box);
341 struct pipe_box box; local
374 struct pipe_box box; local
431 struct pipe_box box; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_blit.c 464 struct pipe_box box; local
519 box = *src_box;
520 src_box = &box;
526 box.width = align(box.width, 4);
527 box.height = align(box.height, 4);
537 box.x /= 2;
538 box.width /= 2;
551 box.y /= 4
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_cmd.c 486 SVGA3dCopyBox *box; local
506 sizeof *cmd + sizeof *box + sizeof *pSuffix,
520 box = (SVGA3dCopyBox *)&cmd[1];
521 box->x = host_offset;
522 box->y = 0;
523 box->z = 0;
524 box->w = size;
525 box->h = 1;
526 box->d = 1;
527 box->srcx = guest_offset
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vdpau/
output.c 193 struct pipe_box box; local
209 box = RectToPipeBox(source_rect, res);
210 transfer = pipe->get_transfer(pipe, res, 0, PIPE_TRANSFER_READ, &box);
224 box.width, box.height, map, transfer->stride, 0, 0);
292 struct pipe_box box; local
340 box.x = box.y = box.z = 0;
341 box.width = res->width0
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
fs-test.c 115 struct pipe_box box; local
139 u_box_2d(0,0,sizeof(constants1),1, &box);
145 &box,
156 u_box_2d(0,0,sizeof(constants2),1, &box);
162 &box,
294 struct pipe_box box; local
355 u_box_2d(0,0,SIZE,SIZE, &box);
361 &box,
quad-sample.c 168 struct pipe_box box; local
228 u_box_2d(0,0,SIZE,SIZE, &box);
234 &box,
vs-test.c 83 struct pipe_box box; local
101 u_box_2d(0,0,sizeof(constants),1, &box);
107 &box,
245 struct pipe_box box; local
306 u_box_2d(0,0,SIZE,SIZE, &box);
312 &box,
gs-test.c 152 struct pipe_box box; local
172 u_box_2d(0,0,sizeof(constants1),1, &box);
178 &box,
189 u_box_2d(0,0,sizeof(constants2),1, &box);
195 &box,
358 struct pipe_box box; local
419 u_box_2d(0,0,SIZE,SIZE, &box);
425 &box,
  /external/mesa3d/src/gallium/tests/trivial/
quad-tex.c 160 struct pipe_box box; local
174 memset(&box, 0, sizeof(box));
175 box.width = 2;
176 box.height = 2;
178 t = p->pipe->get_transfer(p->pipe, p->tex, 0, PIPE_TRANSFER_WRITE, &box);
  /external/skia/src/views/
SkWidgets.cpp 300 SkTextBox box; local
301 box.setMode(SkTextBox::kOneLine_Mode);
302 box.setSpacingAlign(SkTextBox::kCenter_SpacingAlign);
303 box.setBox(0, 0, this->width(), this->height());
310 box.draw(canvas, label.c_str(), label.size(), p);
459 SkTextBox box;
461 box.setMode(fMode == kAutoWidth_Mode ? SkTextBox::kOneLine_Mode : SkTextBox::kLineBreak_Mode);
462 box.setSpacingAlign(this->getSpacingAlign());
463 box.setBox(fMargin.fX, fMargin.fY, this->width() - fMargin.fX, this->height() - fMargin.fY);
464 box.draw(canvas, fText.c_str(), fText.size(), fPaint)
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
ModelClass.java 218 public abstract ModelClass box(); method in class:ModelClass
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
JavaClass.java 166 public JavaClass box() { method in class:JavaClass
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 128 Mailbox box = ProviderTestUtils.setupMailbox("box1", acct.mId, true, mMockContext); local
129 Message msg1 = ProviderTestUtils.setupMessage("message1", acct.mId, box.mId, false, false,
138 Message msg2 = ProviderTestUtils.setupMessage("message2", acct.mId, box.mId, false, false,
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingBox.java 52 * container for a group of vertices of a particular piece of geometry. This box
100 * <code>computeFromPoints</code> creates a new Bounding Box from a given
111 * <code>computeFromTris</code> creates a new Bounding Box from a given
206 * box of the points, then selects the smallest enclosing sphere of the box
262 * <code>transform</code> modifies the center of the box to reflect the
268 * box to store result in
272 BoundingBox box; local
274 box = new BoundingBox();
276 box = (BoundingBox) store;
304 BoundingBox box; local
    [all...]
  /external/eigen/demos/opengl/
quaternion_demo.cpp 564 QGroupBox* box = new QGroupBox("navigation mode"); local
578 box->setLayout(boxLayout);
579 layout->addWidget(box);
583 QGroupBox* box = new QGroupBox("rotation mode"); local
597 box->setLayout(boxLayout);
598 layout->addWidget(box);
602 QGroupBox* box = new QGroupBox("spherical interpolation"); local
616 box->setLayout(boxLayout);
617 layout->addWidget(box);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestFancyCar.java 123 // Box floor = new Box(Vector3f.ZERO, 140, 1f, 140);
164 BoundingBox box = (BoundingBox) chasis.getModelBound(); local
186 box = (BoundingBox) wheel_fr.getModelBound();
187 wheelRadius = box.getYExtent();
190 player.addWheel(wheel_fr.getParent(), box.getCenter().add(0, -front_wheel_h, 0),
195 box = (BoundingBox) wheel_fl.getModelBound();
196 player.addWheel(wheel_fl.getParent(), box.getCenter().add(0, -front_wheel_h, 0),
201 box = (BoundingBox) wheel_br.getModelBound();
202 player.addWheel(wheel_br.getParent(), box.getCenter().add(0, -back_wheel_h, 0)
    [all...]
TestAttachDriver.java 52 import com.jme3.scene.shape.Box;
115 Box floor = new Box(Vector3f.ZERO, 100, 1f, 100);
133 BoxCollisionShape box = new BoxCollisionShape(new Vector3f(1.2f, 0.5f, 2.4f)); local
134 compoundShape.addChildShape(box, new Vector3f(0, 1, 0));
TestHoveringTank.java 173 BoundingBox box = (BoundingBox) missile.getWorldBound(); local
174 final Vector3f extent = box.getExtent(null);
  /external/mesa3d/src/gallium/drivers/i915/
i915_resource_texture.c 719 const struct pipe_box *box)
732 transfer->b.box = *box;
772 u_box_origin_2d(itransfer->b.box.width, itransfer->b.box.height, &sbox);
774 itransfer->b.box.x, itransfer->b.box.y, itransfer->b.box.z,
792 struct pipe_box *box = &itransfer->b.box; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/android/
native_android.cpp 382 struct pipe_box box; local
388 u_box_origin_2d(src->width0, src->height0, &box);
389 pipe->resource_copy_region(pipe, dst, 0, 0, 0, 0, src, 0, &box);
  /external/opencv/cv/src/
cvrotcalipers.cpp 351 CvBox2D box; local
356 memset(&box, 0, sizeof(box));
443 box.center.x = out[0].x + (out[1].x + out[2].x)*0.5f;
444 box.center.y = out[0].y + (out[1].y + out[2].y)*0.5f;
445 box.size.height = (float)sqrt((double)out[1].x*out[1].x + (double)out[1].y*out[1].y);
446 box.size.width = (float)sqrt((double)out[2].x*out[2].x + (double)out[2].y*out[2].y);
447 box.angle = (float)atan2( -(double)out[1].y, (double)out[1].x );
451 box.center.x = (points[0].x + points[1].x)*0.5f;
452 box.center.y = (points[0].y + points[1].y)*0.5f
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationClass.java 274 public AnnotationClass box() { method in class:AnnotationClass
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyScene.java 74 GradientWidget box = new GradientWidget(this, node); local
75 box.setLayout(LayoutFactory.createVerticalFlowLayout());
76 box.setBorder(BorderFactory.createLineBorder(2, Color.BLACK));
77 box.setOpaque(true);
85 box.addChild(label);
93 box.addressWidget = label;
95 box.addChild(label);
103 box.addChild(label);
105 return box;
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_aaline.c 443 struct pipe_box box; local
450 u_box_origin_2d( size, size, &box );
458 &box);

Completed in 367 milliseconds

1 23 4 5 6 7