HomeSort by relevance Sort by last modified time
    Searched refs:height (Results 2226 - 2250 of 9458) sorted by null

<<81828384858687888990>>

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btCapsuleShape.h 24 ///The total height is height+2*radius, so the height is just the height between the center of each 'sphere' of the capsule caps.
39 btCapsuleShape(btScalar radius,btScalar height);
125 ///the total height is height+2*radius, so the height is just the height between the center of each 'sphere' of the capsule caps.
130 btCapsuleShapeX(btScalar radius,btScalar height);
    [all...]
btConeShape.h 37 btConeShape (btScalar radius,btScalar height);
107 btConeShapeX(btScalar radius,btScalar height);
127 btConeShapeZ(btScalar radius,btScalar height);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/hiero/unicodefont/effects/
GradientEffect.java 49 float height = (ascent) * scale; local
50 float top = -glyph.getYOffset() + unicodeFont.getDescent() + offset + ascent / 2 - height / 2;
51 g.setPaint(new GradientPaint(0, top, topColor, 0, top + height, bottomColor, cyclic));
84 /** Changes the height of the gradient by a percentage. The gradient is normally the height of most glyphs in the font. */
108 values.add(EffectUtil.floatValue("Scale", scale, 0, 10, "This setting allows you to change the height of the gradient by a"
109 + "percentage. The gradient is normally the height of most glyphs in the font."));
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
MeshBuilder.java 841 public void box (float width, float height, float depth) {
842 BoxShapeBuilder.build(this, width, height, depth);
847 public void box (float x, float y, float z, float width, float height, float depth) {
848 BoxShapeBuilder.build(this, x, y, z, width, height, depth);
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
FileTextureArrayData.java 54 int height = -1; local
59 height = data.getHeight();
62 if (width != data.getWidth() || height != data.getHeight()) {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
FullscreenTest.java 87 public void resize (int width, int height) {
88 Gdx.app.log("FullscreenTest", "resized: " + width + ", " + height);
89 batch.getProjectionMatrix().setToOrtho2D(0, 0, width, height);
  /external/libgdx/tests/gdx-tests-lwjgl3/src/com/badlogic/gdx/tests/lwjgl3/
GlfwTest.java 35 System.out.println(modes.get(i).width() + "x" + modes.get(i).height());
38 System.out.println("Mode: " + mode.width() + "x" + mode.height());
39 windowHandle = glfwCreateWindow(mode.width(), mode.height(), "Test", glfwGetPrimaryMonitor(), 0);
  /external/libjpeg-turbo/java/
TJExample.java 52 System.out.println("-scale M/N = if the input image is a JPEG file, scale the width/height of the");
81 System.out.println(" cropping region, and WxH specifies its width and height. X,Y must be");
210 xform.height = temph;
242 int width, height; local
268 height = tjd.getHeight();
270 System.out.println("Source Image: " + width + " x " + height +
286 height = scaleFactor.getScaled(height);
289 img = tjd.decompress(width, height, BufferedImage.TYPE_INT_RGB,
292 bmpBuf = tjd.decompress(width, 0, height, TJ.PF_BGRX, flags)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_linear.c 92 t->tile.height = tile_height;
94 t->rows = t->tile.height / t->block.height;
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_resource.c 56 sf->height = 1;
60 sf->base.height = sf->height;
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_blit.c 82 width, height);
105 box->h = height;
146 src_box->width, src_box->height, src_box->depth);
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_helper.c 54 uint width, height; member in struct:resource_surface
109 uint width, uint height)
113 if (rsurf->width != width || rsurf->height != height) {
116 rsurf->height = height;
125 uint *width, uint *height)
129 if (height)
130 *height = rsurf->height;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xvmc/
subpicture.c 184 dst_box->width, dst_box->height,
195 unsigned short width, unsigned short height, int xvimage_id)
218 height > context_priv->subpicture_max_height)
237 tex_templ.height0 = height;
241 tex_templ.height0 = util_next_power_of_two(height);
266 subpicture->height = height;
300 unsigned short width, unsigned short height, unsigned int color)
306 struct pipe_box dst_box = {x, y, 0, width, height, 1};
334 dst_box.width, dst_box.height, &uc)
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xmesa.h 263 int height );
285 * Output: width, height - size of buffer in pixels
294 GLint *height,
373 unsigned int width, unsigned int height);
  /external/mesa3d/src/mesa/state_tracker/
st_cb_eglimage.c 87 strb->Base.Height = ps->height;
128 ps->width, ps->height, 1, 0, internalFormat,
137 stObj->height0 = ps->height;
  /external/opencv/cv/src/
_cvmatrix.h 357 CV_INLINE void icvMulTransMatrixR_64d( double* src, int width, int height, double* dst )
359 CvMat srcMat = cvMat( height, width, CV_64F, src );
365 CV_INLINE void icvMulTransMatrixL_64d( double* src, int width, int height, double* dst )
367 CvMat srcMat = cvMat( height, width, CV_64F, src );
368 CvMat dstMat = cvMat( height, height, CV_64F, dst );
373 CV_INLINE void icvMulTransMatrixR_32f( float* src, int width, int height, float* dst )
375 CvMat srcMat = cvMat( height, width, CV_32F, src );
381 CV_INLINE void icvMulTransMatrixL_32f( float* src, int width, int height, float* dst )
383 CvMat srcMat = cvMat( height, width, CV_32F, src )
    [all...]
cvsnakes.cpp 82 int neighbors = win.height * win.width;
85 int centery = win.height >> 1;
103 int map_height = ((roi.height - 1) >> 3) + 1;
110 CvMat _src = cvMat( roi.height, roi.width, CV_8UC1, src );
121 if( (roi.height <= 0) || (roi.width <= 0) )
137 if( (win.height <= 0) || (!(win.height & 1)))
149 gradient = (float *) cvAlloc( roi.height * roi.width * sizeof( float ));
206 int upper = MIN( pt[i].y, win.height >> 1 );
207 int bottom = MIN( roi.height - 1 - pt[i].y, win.height >> 1 )
    [all...]
  /external/opencv3/3rdparty/libwebp/utils/
quant_levels.c 31 int QuantizeLevels(uint8_t* const data, int width, int height,
37 const size_t data_size = height * width;
46 if (width <= 0 || height <= 0) {
  /external/opencv3/modules/cudaimgproc/src/
blend.cpp 97 blendLinearCaller<uchar>(size.height, size.width, cn, img1, img2, weights1, weights2, result, StreamAccessor::getStream(stream));
99 blendLinearCaller8UC4(size.height, size.width, img1, img2, weights1, weights2, result, StreamAccessor::getStream(stream));
102 blendLinearCaller<float>(size.height, size.width, cn, img1, img2, weights1, weights2, result, StreamAccessor::getStream(stream));
  /external/replicaisland/src/com/replica/replicaisland/
MotionBlurComponent.java 34 public int height; field in class:MotionBlurComponent.BlurRecord
75 mHistory[mCurrentStep].height = drawable.getHeight();
99 stepImage.setHeight(record.height);
  /external/skia/src/core/
SkImageInfo.cpp 97 if (0 == fInfo.width() || 0 == fInfo.height()) {
103 SkIRect srcR = SkIRect::MakeXYWH(x, y, fInfo.width(), fInfo.height());
118 fInfo = fInfo.makeWH(srcR.width(), srcR.height());
  /external/skia/src/gpu/vk/
GrVkStencilAttachment.cpp 34 int height,
41 imageDesc.fHeight = height;
77 size *= this->height();
  /external/skia/tests/
DrawTextTest.cpp 20 bm->allocN32Pixels(bound.width(), bound.height());
41 for (int y = 0; y < test.height(); ++y) {
48 refY >= 0 && refY < ref.height())
FontHostStreamTest.cpp 24 bm->allocN32Pixels(bound.width(), bound.height());
45 for (int y = 0; y < test.height(); ++y) {
52 refY >= 0 && refY < ref.height())
  /external/skia/tools/
imgslice.cpp 86 top = bottom = SkTPin(FLAGS_row, 0, bitmap.height()-1);
92 FLAGS_min = top = SkTPin(FLAGS_min, 0, bitmap.height()-1);
93 FLAGS_max = bottom = SkTPin(FLAGS_max, top, bitmap.height()-1);

Completed in 1690 milliseconds

<<81828384858687888990>>