Home
last modified time | relevance | path

Searched refs:srcx (Results 1 – 25 of 44) sorted by relevance

12

/external/mesa3d/src/mesa/drivers/dri/i915/
Dintel_pixel_copy.c78 GLint srcx, GLint srcy, in do_blit_copypixels() argument
164 srcx += dstx - orig_dstx; in do_blit_copypixels()
168 orig_srcx = srcx; in do_blit_copypixels()
172 &srcx, &srcy, &width, &height)) in do_blit_copypixels()
175 dstx += srcx - orig_srcx; in do_blit_copypixels()
191 srcx += read_irb->draw_x; in do_blit_copypixels()
198 read_irb->mt->region, 0, srcx, srcy, in do_blit_copypixels()
216 GLint srcx, GLint srcy, in intelCopyPixels() argument
225 if (do_blit_copypixels(ctx, srcx, srcy, width, height, destx, desty, type)) in intelCopyPixels()
229 _mesa_meta_CopyPixels(ctx, srcx, srcy, width, height, destx, desty, type); in intelCopyPixels()
Dintel_regions.c376 GLuint srcx, GLuint srcy, GLuint width, GLuint height, in intel_region_copy() argument
396 srcx, srcy, dstx, dsty, width, height, in intel_region_copy()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_pixel_copy.c78 GLint srcx, GLint srcy, in do_blit_copypixels() argument
164 srcx += dstx - orig_dstx; in do_blit_copypixels()
168 orig_srcx = srcx; in do_blit_copypixels()
172 &srcx, &srcy, &width, &height)) in do_blit_copypixels()
175 dstx += srcx - orig_srcx; in do_blit_copypixels()
191 srcx += read_irb->draw_x; in do_blit_copypixels()
198 read_irb->mt->region, 0, srcx, srcy, in do_blit_copypixels()
216 GLint srcx, GLint srcy, in intelCopyPixels() argument
225 if (do_blit_copypixels(ctx, srcx, srcy, width, height, destx, desty, type)) in intelCopyPixels()
229 _mesa_meta_CopyPixels(ctx, srcx, srcy, width, height, destx, desty, type); in intelCopyPixels()
Dintel_regions.c376 GLuint srcx, GLuint srcy, GLuint width, GLuint height, in intel_region_copy() argument
396 srcx, srcy, dstx, dsty, width, height, in intel_region_copy()
/external/mesa3d/src/mesa/drivers/dri/intel/
Dintel_pixel_copy.c78 GLint srcx, GLint srcy, in do_blit_copypixels() argument
164 srcx += dstx - orig_dstx; in do_blit_copypixels()
168 orig_srcx = srcx; in do_blit_copypixels()
172 &srcx, &srcy, &width, &height)) in do_blit_copypixels()
175 dstx += srcx - orig_srcx; in do_blit_copypixels()
191 srcx += read_irb->draw_x; in do_blit_copypixels()
198 read_irb->mt->region, 0, srcx, srcy, in do_blit_copypixels()
216 GLint srcx, GLint srcy, in intelCopyPixels() argument
225 if (do_blit_copypixels(ctx, srcx, srcy, width, height, destx, desty, type)) in intelCopyPixels()
229 _mesa_meta_CopyPixels(ctx, srcx, srcy, width, height, destx, desty, type); in intelCopyPixels()
Dintel_pixel.h57 GLint srcx, GLint srcy,
Dintel_blit.h49 GLshort srcx, GLshort srcy,
Dintel_regions.h122 GLuint srcx, GLuint srcy, GLuint width, GLuint height,
/external/mesa3d/src/mesa/swrast/
Ds_copypix.c50 regions_overlap(GLint srcx, GLint srcy, in regions_overlap() argument
57 if (srcx >= dstx + width || (srcx + width <= dstx)) { in regions_overlap()
72 if (srcx > (dstx + ((zoomX > 0.0F) ? (width * zoomX + 1.0F) : 0.0F))) { in regions_overlap()
76 else if (srcx + width + 1.0F < dstx + ((zoomX > 0.0F) ? 0.0F : (width * zoomX))) { in regions_overlap()
99 copy_rgba_pixels(struct gl_context *ctx, GLint srcx, GLint srcy, in copy_rgba_pixels() argument
115 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height, in copy_rgba_pixels()
151 width, srcx, sy + row, p ); in copy_rgba_pixels()
175 width, srcx, sy, rgba ); in copy_rgba_pixels()
243 copy_depth_pixels( struct gl_context *ctx, GLint srcx, GLint srcy, in copy_depth_pixels() argument
266 overlapping = regions_overlap(srcx, srcy, destx, desty, width, height, in copy_depth_pixels()
[all …]
/external/libvpx/libvpx/vp8/common/
Dextend.c107 int srcy, int srcx, in vp8_copy_and_extend_frame_with_rect() argument
114 int src_y_offset = srcy * src->y_stride + srcx; in vp8_copy_and_extend_frame_with_rect()
115 int dst_y_offset = srcy * dst->y_stride + srcx; in vp8_copy_and_extend_frame_with_rect()
116 int src_uv_offset = ((srcy * src->uv_stride) >> 1) + (srcx >> 1); in vp8_copy_and_extend_frame_with_rect()
117 int dst_uv_offset = ((srcy * dst->uv_stride) >> 1) + (srcx >> 1); in vp8_copy_and_extend_frame_with_rect()
122 if (srcx) in vp8_copy_and_extend_frame_with_rect()
126 if (srcx + srcw != src->y_width) in vp8_copy_and_extend_frame_with_rect()
Dextend.h26 int srcy, int srcx,
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
Dpyr_up.hpp76 int srcx = static_cast<int>((blockIdx.x * blockDim.x) / 2 + threadIdx.x) - 1; in pyrUp() local
79 srcx = ::abs(srcx); in pyrUp()
80 srcx = ::min(src_cols - 1, srcx); in pyrUp()
85 s_srcPatch[threadIdx.y][threadIdx.x] = saturate_cast<work_type>(src(srcy, srcx)); in pyrUp()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_extend.c166 int srcy, int srcx, in vp9_copy_and_extend_frame_with_rect() argument
170 const int el_y = srcx ? 0 : dst->border; in vp9_copy_and_extend_frame_with_rect()
173 const int er_y = srcx + srcw != src->y_width ? 0 : in vp9_copy_and_extend_frame_with_rect()
175 const int src_y_offset = srcy * src->y_stride + srcx; in vp9_copy_and_extend_frame_with_rect()
176 const int dst_y_offset = srcy * dst->y_stride + srcx; in vp9_copy_and_extend_frame_with_rect()
182 const int src_uv_offset = ((srcy * src->uv_stride) >> 1) + (srcx >> 1); in vp9_copy_and_extend_frame_with_rect()
183 const int dst_uv_offset = ((srcy * dst->uv_stride) >> 1) + (srcx >> 1); in vp9_copy_and_extend_frame_with_rect()
Dvp9_extend.h27 int srcy, int srcx,
/external/opencv3/modules/cudawarping/src/cuda/
Dpyr_up.cu67 int srcx = static_cast<int>((blockIdx.x * blockDim.x) / 2 + threadIdx.x) - 1; in pyrUp() local
70 srcx = ::abs(srcx); in pyrUp()
71 srcx = ::min(src.cols - 1, srcx); in pyrUp()
76 s_srcPatch[threadIdx.y][threadIdx.x] = saturate_cast<sum_t>(src(srcy, srcx)); in pyrUp()
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/
DPixmap.java231 …public void drawPixmap (Pixmap pixmap, int x, int y, int srcx, int srcy, int srcWidth, int srcHeig… in drawPixmap() argument
232 this.pixmap.drawPixmap(pixmap.pixmap, srcx, srcy, x, y, srcWidth, srcHeight); in drawPixmap()
248 …public void drawPixmap (Pixmap pixmap, int srcx, int srcy, int srcWidth, int srcHeight, int dstx, … in drawPixmap() argument
250 …this.pixmap.drawPixmap(pixmap.pixmap, srcx, srcy, srcWidth, srcHeight, dstx, dsty, dstWidth, dstHe… in drawPixmap()
/external/opencv3/modules/imgproc/src/opencl/
Dpyr_up.cl92 int srcx = EXTRAPOLATE(mad24((int)get_group_id(0), LOCAL_SIZE/2, tidx) - 1, src_cols);
95 s_srcPatch[tidy][tidx] = convertToFT(loadpix(srcData + srcy * src_step + srcx * PIXSIZE));
145 int srcx = mad24((int)get_group_id(0), LOCAL_SIZE, lx) - 1;
148 int srcx1 = EXTRAPOLATE(srcx, src_cols);
149 int srcx2 = EXTRAPOLATE(srcx+1, src_cols);
/external/mesa3d/src/mesa/main/
Ddrawpix.c193 _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height, in _mesa_CopyPixels() argument
202 srcx, srcy, width, height, in _mesa_CopyPixels()
271 ctx->Driver.CopyPixels( ctx, srcx, srcy, width, height, destx, desty, in _mesa_CopyPixels()
/external/ImageMagick/MagickCore/
Daccelerate-kernels-private.h2958 int srcx = ix + j;
2959 srcx = (srcx < 0) ? -srcx : srcx;
2960 srcx = (srcx >= columns) ? (2 * columns - srcx - 1) : srcx;
2961 value += filter[i + j] * ReadFloat4(image, number_channels, columns, srcx, srcy, channel);
2968 int srcx = (ix < 0) ? -ix : ix; // mirror pad
2969 srcx = (srcx >= columns) ? (2 * columns - srcx - 1) : srcx;
2970 value += filter[i] * ReadFloat4(image, number_channels, columns, srcx, srcy, channel);
3025 int srcx = get_group_id(0) * (tileSize - 2 * pad) - pad + get_local_id(0);
3029 int pos = (mirrorTop(mirrorBottom(srcx), imageWidth) * number_channels) +
3098 …if ((get_local_id(0) >= pad) && (get_local_id(0) < tileSize - pad) && (srcx >= 0) && (srcx < image…
[all …]
/external/mesa3d/src/gallium/drivers/i915/
Di915_blit.h41 short srcx, short srcy,
/external/mesa3d/src/gallium/state_trackers/xvmc/
Dsurface.c343 short srcx, short srcy, unsigned short srcw, unsigned short srch, in XvMCPutSurface() argument
357 struct u_rect src_rect = {srcx, srcx + srcw, srcy, srcy + srch}; in XvMCPutSurface()
376 assert(srcx + srcw - 1 < surface->width); in XvMCPutSurface()
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/
DPixmap.java287 …public void drawPixmap (Pixmap pixmap, int x, int y, int srcx, int srcy, int srcWidth, int srcHeig… in drawPixmap() argument
289 image(image, srcx, srcy, srcWidth, srcHeight, x, y, srcWidth, srcHeight); in drawPixmap()
305 …public void drawPixmap (Pixmap pixmap, int srcx, int srcy, int srcWidth, int srcHeight, int dstx, … in drawPixmap() argument
307 …image(pixmap.getCanvasElement(), srcx, srcy, srcWidth, srcHeight, dstx, dsty, dstWidth, dstHeight); in drawPixmap() local
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_drawpixels.c1205 copy_stencil_pixels(struct gl_context *ctx, GLint srcx, GLint srcy, in copy_stencil_pixels() argument
1228 _mesa_readpixels(ctx, srcx, srcy, width, height, in copy_stencil_pixels()
1332 blit_copy_pixels(struct gl_context *ctx, GLint srcx, GLint srcy, in blit_copy_pixels() argument
1366 readX = srcx; in blit_copy_pixels()
1415 st_CopyPixels(struct gl_context *ctx, GLint srcx, GLint srcy, in st_CopyPixels() argument
1439 st_CopyPixels(ctx, srcx, srcy, width, height, dstx, dsty, GL_STENCIL); in st_CopyPixels()
1440 st_CopyPixels(ctx, srcx, srcy, width, height, dstx, dsty, GL_DEPTH); in st_CopyPixels()
1446 copy_stencil_pixels(ctx, srcx, srcy, width, height, dstx, dsty); in st_CopyPixels()
1450 if (blit_copy_pixels(ctx, srcx, srcy, width, height, dstx, dsty, type)) in st_CopyPixels()
1535 readX = srcx; in st_CopyPixels()
Dst_texture.c273 unsigned srcx, unsigned srcy, unsigned width, unsigned height) in st_surface_data() argument
284 srcx, srcy); in st_surface_data()
/external/mesa3d/src/gallium/state_trackers/va/
Dva_surface.c112 vlVaPutSurface(VADriverContextP ctx, VASurfaceID surface, void* draw, short srcx, short srcy, in vlVaPutSurface() argument

12