Searched refs:dstHeight (Results 1 - 25 of 43) sorted by relevance

12

/external/mesa3d/src/mesa/main/
H A Dmipmap.h39 GLint dstWidth, GLint dstHeight, GLint dstDepth,
55 GLint *dstWidth, GLint *dstHeight, GLint *dstDepth);
H A Dcopyimage.c468 int dstWidth, dstHeight, dstDepth; local
551 dstHeight = srcHeight * dst_bh / src_bh;
560 dstX, dstY, dstZ, dstWidth, dstHeight, dstDepth,
H A Dmipmap.c1449 GLint dstWidth, GLint dstHeight,
1455 const GLint dstHeightNB = dstHeight - 2 * border;
1462 if (srcHeight > 1 && srcHeight > dstHeight) {
1494 memcpy(dstPtr + dstWidth * (dstHeight - 1) * bpt,
1497 memcpy(dstPtr + (dstWidth * dstHeight - 1) * bpt,
1509 dstPtr + (dstWidth * (dstHeight - 1) + 1) * bpt);
1511 if (srcHeight == dstHeight) {
1541 GLint dstWidth, GLint dstHeight, GLint dstDepth,
1548 const GLint dstHeightNB = dstHeight - 2 * border;
1557 bytesPerDstImage = dstRowStride * dstHeight * bp
1446 make_2d_mipmap(GLenum datatype, GLuint comps, GLint border, GLint srcWidth, GLint srcHeight, const GLubyte *srcPtr, GLint srcRowStride, GLint dstWidth, GLint dstHeight, GLubyte *dstPtr, GLint dstRowStride) argument
1538 make_3d_mipmap(GLenum datatype, GLuint comps, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, const GLubyte **srcPtr, GLint srcRowStride, GLint dstWidth, GLint dstHeight, GLint dstDepth, GLubyte **dstPtr, GLint dstRowStride) argument
1699 _mesa_generate_mipmap_level(GLenum target, GLenum datatype, GLuint comps, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, const GLubyte **srcData, GLint srcRowStride, GLint dstWidth, GLint dstHeight, GLint dstDepth, GLubyte **dstData, GLint dstRowStride) argument
1768 _mesa_next_mipmap_level_size(GLenum target, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, GLint *dstWidth, GLint *dstHeight, GLint *dstDepth) argument
1938 GLint dstWidth, dstHeight, dstDepth; local
2125 GLint dstWidth, dstHeight, dstDepth; local
[all...]
/external/skia/src/core/
H A DSkWritePixelsRec.h46 bool trim(int dstWidth, int dstHeight);
H A DSkImageInfo.cpp243 bool SkWritePixelsRec::trim(int dstWidth, int dstHeight) { argument
254 if (!dstR.intersect(0, 0, dstWidth, dstHeight)) {
/external/skqp/src/core/
H A DSkWritePixelsRec.h46 bool trim(int dstWidth, int dstHeight);
H A DSkImageInfo.cpp203 bool SkWritePixelsRec::trim(int dstWidth, int dstHeight) { argument
214 if (!dstR.intersect(0, 0, dstWidth, dstHeight)) {
/external/deqp/framework/delibs/deimage/
H A DdeImage.h59 deImage* deImage_scale (const deImage* image, int dstWidth, int dstHeight);
H A DdeImage.c117 deImage* deImage_scale (const deImage* srcImage, int dstWidth, int dstHeight) argument
121 deImage* result = deImage_create(dstWidth, dstHeight, srcImage->format);
124 for (y = 0; y < dstHeight; y++)
129 float yFloat = ((float)y + 0.5f) / (float)dstHeight * (float)srcImage->height - 0.5f;
/external/skia/src/codec/
H A DSkSampledCodec.cpp213 const int dstHeight = info.height(); local
286 dstHeight, 0);
290 for (int y = 0; y < dstHeight; y++) {
293 options.fZeroInitialized, dstHeight, y + 1);
296 if (y < dstHeight - 1) {
299 options.fZeroInitialized, dstHeight, y + 1);
313 if (is_coord_necessary(srcY, sampleY, dstHeight)) {
336 if (!is_coord_necessary(srcY, sampleY, dstHeight)) {
H A DSkJpegCodec.cpp465 const unsigned int dstHeight = size.height(); local
479 while (dinfo.output_width != dstWidth || dinfo.output_height != dstHeight) {
482 if (1 == num || dstWidth > dinfo.output_width || dstHeight > dinfo.output_height) {
/external/skqp/src/codec/
H A DSkSampledCodec.cpp213 const int dstHeight = info.height(); local
286 dstHeight, 0);
290 for (int y = 0; y < dstHeight; y++) {
293 options.fZeroInitialized, dstHeight, y + 1);
296 if (y < dstHeight - 1) {
299 options.fZeroInitialized, dstHeight, y + 1);
313 if (is_coord_necessary(srcY, sampleY, dstHeight)) {
336 if (!is_coord_necessary(srcY, sampleY, dstHeight)) {
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBitmap.java57 public static Bitmap createScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter) { argument
61 shadowBitmap.appendDescription(" scaled to " + dstWidth + " x " + dstHeight);
66 shadowBitmap.setHeight(dstHeight);
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta_generate_mipmap.c277 GLsizei dstWidth, dstHeight, dstDepth; local
294 dstHeight = minify(srcHeight, 1);
298 dstHeight == srcHeight &&
323 _mesa_set_viewport(ctx, 0, 0, 0, dstWidth, dstHeight);
356 assert(dstHeight == 1);
358 assert(dstHeight == ctx->DrawBuffer->Height);
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/env/
H A DImageUtils.java286 * @param dstHeight Height of destination frame.
297 final int dstHeight,
322 if (inWidth != dstWidth || inHeight != dstHeight) {
324 final float scaleFactorY = dstHeight / (float) inHeight;
339 matrix.postTranslate(dstWidth / 2.0f, dstHeight / 2.0f);
293 getTransformationMatrix( final int srcWidth, final int srcHeight, final int dstWidth, final int dstHeight, final int applyRotation, final boolean maintainAspectRatio) argument
/external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
H A DViESurfaceRenderer.java55 private void changeDestRect(int dstWidth, int dstHeight) { argument
57 dstRect.bottom = (int)(dstRect.top + dstBottomScale * dstHeight);
/external/skia/src/effects/
H A DSkMagnifierImageFilter.cpp152 int dstWidth = dst.width(), dstHeight = dst.height(); local
153 for (int y = 0; y < dstHeight; ++y) {
156 SkScalar y_dist = SkMin32(y, dstHeight - y - 1) * invInset;
H A DSkBlurMask.cpp327 int dstHeight = dst->fBounds.height(); local
333 SkAutoTMalloc<uint8_t> verticalScanline(dstHeight);
336 ComputeBlurredScanline(verticalScanline, profile, dstHeight, sigma);
338 for (int y = 0 ; y < dstHeight ; ++y) {
366 for (int y = pad ; y < dstHeight-pad ; y++) {
371 for (int y = pad ; y < dstHeight-pad ; y++) {
H A DSkAlphaThresholdFilter.cpp231 int dstWidth = dst.width(), dstHeight = dst.height(); local
233 for (int y = 0; y < dstHeight; ++y) {
/external/skqp/src/effects/
H A DSkMagnifierImageFilter.cpp152 int dstWidth = dst.width(), dstHeight = dst.height(); local
153 for (int y = 0; y < dstHeight; ++y) {
156 SkScalar y_dist = SkMin32(y, dstHeight - y - 1) * invInset;
H A DSkBlurMask.cpp325 int dstHeight = dst->fBounds.height(); local
331 SkAutoTMalloc<uint8_t> verticalScanline(dstHeight);
334 ComputeBlurredScanline(verticalScanline, profile.get(), dstHeight, sigma);
336 for (int y = 0 ; y < dstHeight ; ++y) {
364 for (int y = pad ; y < dstHeight-pad ; y++) {
369 for (int y = pad ; y < dstHeight-pad ; y++) {
H A DSkAlphaThresholdFilter.cpp231 int dstWidth = dst.width(), dstHeight = dst.height(); local
233 for (int y = 0; y < dstHeight; ++y) {
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowBitmap.java229 public static Bitmap createScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter) { argument
230 if (dstWidth == src.getWidth() && dstHeight == src.getHeight() && !filter) {
238 shadowBitmap.appendDescription(" scaled to " + dstWidth + " x " + dstHeight);
246 shadowBitmap.height = dstHeight;
/external/mesa3d/src/mesa/swrast/
H A Ds_blit.c124 const GLint dstHeight = ABS(dstY1 - dstY0); local
289 dstWidth, dstHeight,
297 for (dstRow = 0; dstRow < dstHeight; dstRow++) {
298 GLfloat srcRowF = (dstRow + 0.5F) / dstHeight * srcHeight - 0.5F;
523 const GLint dstHeight = ABS(dstY1 - dstY0); local
625 for (dstRow = 0; dstRow < dstHeight; dstRow++) {
627 GLfloat srcRow = (dstRow + 0.5F) / dstHeight * srcHeight - 0.5F;
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga_reg.h1143 uint32 dstHeight; member in struct:SVGAOverlayUnit

Completed in 4462 milliseconds

12