/external/libvpx/libvpx/vp8/common/x86/ |
D | vp8_asm_stubs.c | 79 int xoffset, int yoffset, unsigned char *dst_ptr, in vp8_sixtap_predict4x4_mmx() argument 87 VFilter = vp8_six_tap_x86[yoffset]; in vp8_sixtap_predict4x4_mmx() 96 int yoffset, unsigned char *dst_ptr, in vp8_sixtap_predict16x16_sse2() argument 104 if (yoffset) { in vp8_sixtap_predict16x16_sse2() 108 VFilter = vp8_six_tap_x86[yoffset]; in vp8_sixtap_predict16x16_sse2() 119 VFilter = vp8_six_tap_x86[yoffset]; in vp8_sixtap_predict16x16_sse2() 128 int xoffset, int yoffset, in vp8_sixtap_predict8x8_sse2() argument 135 if (yoffset) { in vp8_sixtap_predict8x8_sse2() 139 VFilter = vp8_six_tap_x86[yoffset]; in vp8_sixtap_predict8x8_sse2() 150 VFilter = vp8_six_tap_x86[yoffset]; in vp8_sixtap_predict8x8_sse2() [all …]
|
D | bilinear_filter_sse2.c | 76 const int yoffset) { in vertical_16x16() argument 79 if (yoffset == 0) { in vertical_16x16() 93 const __m128i vfilter_0 = _mm_set1_epi16(vp8_bilinear_filters[yoffset][0]); in vertical_16x16() 94 const __m128i vfilter_1 = _mm_set1_epi16(vp8_bilinear_filters[yoffset][1]); in vertical_16x16() 132 int xoffset, int yoffset, uint8_t *dst_ptr, in vp8_bilinear_predict16x16_sse2() argument 136 assert((xoffset | yoffset) != 0); in vp8_bilinear_predict16x16_sse2() 140 vertical_16x16(FData, dst_ptr, dst_pitch, yoffset); in vp8_bilinear_predict16x16_sse2() 185 const int yoffset, const int height) { in vertical_8xN() argument 188 if (yoffset == 0) { in vertical_8xN() 201 const __m128i vfilter_0 = _mm_set1_epi16(vp8_bilinear_filters[yoffset][0]); in vertical_8xN() [all …]
|
/external/libaom/libaom/aom_dsp/arm/ |
D | subpel_variance_neon.c | 111 int xoffset, int yoffset, in aom_sub_pixel_variance8x8_neon() argument 120 bilinear_filters_2t[yoffset]); in aom_sub_pixel_variance8x8_neon() 126 int yoffset, const uint8_t *dst, in aom_sub_pixel_variance16x16_neon() argument 135 bilinear_filters_2t[yoffset]); in aom_sub_pixel_variance16x16_neon() 141 int yoffset, const uint8_t *dst, in aom_sub_pixel_variance32x32_neon() argument 150 bilinear_filters_2t[yoffset]); in aom_sub_pixel_variance32x32_neon() 156 int yoffset, const uint8_t *dst, in aom_sub_pixel_variance64x64_neon() argument 165 bilinear_filters_2t[yoffset]); in aom_sub_pixel_variance64x64_neon() 170 int xoffset, int yoffset, in aom_sub_pixel_variance4x4_neon() argument 179 bilinear_filters_2t[yoffset]); in aom_sub_pixel_variance4x4_neon() [all …]
|
/external/libvpx/libvpx/vp8/common/ |
D | filter.c | 126 int xoffset, int yoffset, unsigned char *dst_ptr, in vp8_sixtap_predict4x4_c() argument 132 VFilter = vp8_sub_pel_filters[yoffset]; /* 6 tap */ in vp8_sixtap_predict4x4_c() 138 int xoffset, int yoffset, unsigned char *dst_ptr, in vp8_sixtap_predict8x8_c() argument 145 VFilter = vp8_sub_pel_filters[yoffset]; /* 6 tap */ in vp8_sixtap_predict8x8_c() 157 int xoffset, int yoffset, unsigned char *dst_ptr, in vp8_sixtap_predict8x4_c() argument 164 VFilter = vp8_sub_pel_filters[yoffset]; /* 6 tap */ in vp8_sixtap_predict8x4_c() 176 int xoffset, int yoffset, unsigned char *dst_ptr, in vp8_sixtap_predict16x16_c() argument 183 VFilter = vp8_sub_pel_filters[yoffset]; /* 6 tap */ in vp8_sixtap_predict16x16_c() 323 int xoffset, int yoffset, unsigned char *dst_ptr, in vp8_bilinear_predict4x4_c() argument 329 assert((xoffset | yoffset) != 0); in vp8_bilinear_predict4x4_c() [all …]
|
D | reconinter.c | 178 int yoffset = i * 8 + j * 2; in vp8_build_inter4x4_predictors_mbuv() local 184 temp = x->block[yoffset].bmi.mv.as_mv.row + in vp8_build_inter4x4_predictors_mbuv() 185 x->block[yoffset + 1].bmi.mv.as_mv.row + in vp8_build_inter4x4_predictors_mbuv() 186 x->block[yoffset + 4].bmi.mv.as_mv.row + in vp8_build_inter4x4_predictors_mbuv() 187 x->block[yoffset + 5].bmi.mv.as_mv.row; in vp8_build_inter4x4_predictors_mbuv() 193 temp = x->block[yoffset].bmi.mv.as_mv.col + in vp8_build_inter4x4_predictors_mbuv() 194 x->block[yoffset + 1].bmi.mv.as_mv.col + in vp8_build_inter4x4_predictors_mbuv() 195 x->block[yoffset + 4].bmi.mv.as_mv.col + in vp8_build_inter4x4_predictors_mbuv() 196 x->block[yoffset + 5].bmi.mv.as_mv.col; in vp8_build_inter4x4_predictors_mbuv() 461 int yoffset = i * 8 + j * 2; in build_4x4uvmvs() local [all …]
|
/external/libvpx/libvpx/test/ |
D | predict_test.cc | 34 int xoffset, int yoffset, uint8_t *dst_ptr, 157 for (int yoffset = 0; yoffset < 8; ++yoffset) { in TestWithRandomData() local 158 if (xoffset == 0 && yoffset == 0) { in TestWithRandomData() 167 reference(&src_[kSrcStride * 2 + 2], kSrcStride, xoffset, yoffset, in TestWithRandomData() 171 xoffset, yoffset, dst_, dst_stride_)); in TestWithRandomData() 186 for (int yoffset = 0; yoffset < 8; ++yoffset) { in TestWithUnalignedDst() local 187 if (xoffset == 0 && yoffset == 0) { in TestWithUnalignedDst() 193 reference(&src_[kSrcStride * 2 + 2], kSrcStride, xoffset, yoffset, in TestWithUnalignedDst() 200 kSrcStride, xoffset, yoffset, in TestWithUnalignedDst() 214 for (int yoffset = 0; yoffset < 8; ++yoffset) { in Run() local [all …]
|
/external/libvpx/config/x86_64/ |
D | vp8_rtcd.h | 30 …6x16_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 31 …6_sse2(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 32 …_ssse3(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 35 …t4x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 36 …4_sse2(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 39 …t8x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 40 …4_sse2(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 43 …t8x8_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 44 …8_sse2(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 45 …_ssse3(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… [all …]
|
/external/libvpx/config/x86/ |
D | vp8_rtcd.h | 30 …6x16_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 31 …6_sse2(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 32 …_ssse3(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 35 …t4x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 36 …4_sse2(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 39 …t8x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 40 …4_sse2(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 43 …t8x8_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 44 …8_sse2(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 45 …_ssse3(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… [all …]
|
/external/libaom/libaom/test/ |
D | masked_variance_test.cc | 36 const uint8_t *src, int src_stride, int xoffset, int yoffset, 77 int yoffset; in TEST_P() local 91 yoffset = yoffsets[l]; in TEST_P() 93 ref_ret = ref_func_(src_ptr, src_stride, xoffset, yoffset, ref_ptr, in TEST_P() 97 opt_ret = opt_func_(src_ptr, src_stride, xoffset, yoffset, in TEST_P() 134 for (int yoffset = 0; yoffset < BIL_SUBPEL_SHIFTS; yoffset++) { in TEST_P() local 146 ref_ret = ref_func_(src_ptr, src_stride, xoffset, yoffset, ref_ptr, in TEST_P() 150 opt_ret = opt_func_(src_ptr, src_stride, xoffset, yoffset, in TEST_P() 159 first_failure_y = yoffset; in TEST_P() 217 int xoffset, yoffset; in TEST_P() local [all …]
|
/external/libvpx/config/arm64/ |
D | vp8_rtcd.h | 30 …6x16_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 31 …6_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 34 …t4x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 35 …4_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 38 …t8x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 39 …4_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 42 …t8x8_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 43 …8_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 169 …6x16_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 170 …6_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… [all …]
|
/external/libvpx/config/arm-neon/ |
D | vp8_rtcd.h | 30 …6x16_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 31 …6_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 34 …t4x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 35 …4_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 38 …t8x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 39 …4_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 42 …t8x8_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 43 …8_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 169 …6x16_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 170 …6_neon(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… [all …]
|
/external/libaom/libaom/aom_dsp/x86/ |
D | highbd_variance_sse4.c | 112 const uint8_t *src, int src_stride, int xoffset, int yoffset, in aom_highbd_8_sub_pixel_variance4x4_sse4_1() argument 120 bilinear_filters_2t[yoffset]); in aom_highbd_8_sub_pixel_variance4x4_sse4_1() 127 const uint8_t *src, int src_stride, int xoffset, int yoffset, in aom_highbd_10_sub_pixel_variance4x4_sse4_1() argument 135 bilinear_filters_2t[yoffset]); in aom_highbd_10_sub_pixel_variance4x4_sse4_1() 142 const uint8_t *src, int src_stride, int xoffset, int yoffset, in aom_highbd_12_sub_pixel_variance4x4_sse4_1() argument 150 bilinear_filters_2t[yoffset]); in aom_highbd_12_sub_pixel_variance4x4_sse4_1() 159 const uint8_t *src, int src_stride, int xoffset, int yoffset, in aom_highbd_8_sub_pixel_avg_variance4x4_sse4_1() argument 169 bilinear_filters_2t[yoffset]); in aom_highbd_8_sub_pixel_avg_variance4x4_sse4_1() 179 const uint8_t *src, int src_stride, int xoffset, int yoffset, in aom_highbd_10_sub_pixel_avg_variance4x4_sse4_1() argument 189 bilinear_filters_2t[yoffset]); in aom_highbd_10_sub_pixel_avg_variance4x4_sse4_1() [all …]
|
D | masked_variance_intrin_ssse3.c | 28 int yoffset, uint8_t *dst, int w, int h); 31 int yoffset, uint8_t *dst, int h); 34 int yoffset, uint8_t *dst, int h); 55 const uint8_t *src, int src_stride, int xoffset, int yoffset, \ 62 bilinear_filter(src, src_stride, xoffset, yoffset, temp, W, H); \ 75 const uint8_t *src, int src_stride, int xoffset, int yoffset, \ 82 bilinear_filter8xh(src, src_stride, xoffset, yoffset, temp, H); \ 95 const uint8_t *src, int src_stride, int xoffset, int yoffset, \ 102 bilinear_filter4xh(src, src_stride, xoffset, yoffset, temp, H); \ 150 int yoffset, uint8_t *dst, int w, int h) { in bilinear_filter() argument [all …]
|
/external/mesa3d/src/mesa/main/ |
D | teximage.h | 235 GLint xoffset, GLint yoffset, GLint zoffset, 353 GLint xoffset, GLint yoffset, 360 GLint xoffset, GLint yoffset, 367 GLint xoffset, GLint yoffset, GLint zoffset, 374 GLint xoffset, GLint yoffset, GLint zoffset, 404 GLint xoffset, GLint yoffset, GLsizei width, 410 GLint xoffset, GLint yoffset, GLsizei width, 416 GLint yoffset, GLsizei width, GLsizei height, 422 GLint xoffset, GLint yoffset, 429 GLint yoffset, GLint zoffset, GLsizei width, [all …]
|
D | texgetimage.c | 78 GLint xoffset, GLint yoffset, GLint zoffset, in get_tex_depth() argument 97 xoffset, yoffset, width, height, in get_tex_depth() 127 GLint xoffset, GLint yoffset, GLint zoffset, in get_tex_depth_stencil() argument 142 xoffset, yoffset, width, height, in get_tex_depth_stencil() 183 GLint xoffset, GLint yoffset, GLint zoffset, in get_tex_stencil() argument 198 xoffset, yoffset, width, height, in get_tex_stencil() 229 GLint xoffset, GLint yoffset, GLint zoffset, in get_tex_ycbcr() argument 242 xoffset, yoffset, width, height, in get_tex_ycbcr() 315 GLint xoffset, GLint yoffset, GLint zoffset, in get_tex_rgba_compressed() argument 347 xoffset, yoffset, width, height, in get_tex_rgba_compressed() [all …]
|
D | teximage.c | 1151 GLint xoffset, GLint yoffset, GLint zoffset, in error_check_subtexture_dimensions() argument 1173 if (yoffset < -yBorder) { in error_check_subtexture_dimensions() 1177 if (yoffset + subHeight > (GLint) destImage->Height) { in error_check_subtexture_dimensions() 1179 func, yoffset, subHeight, destImage->Height); in error_check_subtexture_dimensions() 1217 if ((xoffset % bw != 0) || (yoffset % bh != 0) || (zoffset % bd != 0)) { in error_check_subtexture_dimensions() 1220 func, xoffset, yoffset, zoffset); in error_check_subtexture_dimensions() 1237 (yoffset + subHeight != (GLint) destImage->Height)) { in error_check_subtexture_dimensions() 2165 GLint xoffset, GLint yoffset, GLint zoffset, in texsubimage_error_check() argument 2240 texImage, xoffset, yoffset, zoffset, in texsubimage_error_check() 2551 GLint xoffset, GLint yoffset, GLint zoffset, in copytexsubimage_error_check() argument [all …]
|
/external/libjpeg-turbo/ |
D | jccoefct.c | 147 int blkn, bi, ci, yindex, yoffset, blockcnt; in compress_data() local 152 for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row; in compress_data() 153 yoffset++) { in compress_data() 171 ypos = yoffset * DCTSIZE; /* ypos == (yoffset+yindex) * DCTSIZE */ in compress_data() 174 yoffset + yindex < compptr->last_row_height) { in compress_data() 206 coef->MCU_vert_offset = yoffset; in compress_data() 345 int blkn, ci, xindex, yindex, yoffset; in compress_output() local 364 for (yoffset = coef->MCU_vert_offset; yoffset < coef->MCU_rows_per_iMCU_row; in compress_output() 365 yoffset++) { in compress_output() 374 buffer_ptr = buffer[ci][yindex + yoffset] + start_col; in compress_output() [all …]
|
/external/libvpx/config/generic/ |
D | vp8_rtcd.h | 30 …6x16_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 33 …t4x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 36 …t8x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 39 …t8x8_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 141 …6x16_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 144 …t4x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 147 …t8x4_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d… 150 …t8x8_c(unsigned char *src_ptr, int src_pixels_per_line, int xoffset, int yoffset, unsigned char *d…
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_tex_subimage.c | 49 GLint xoffset, GLint yoffset, in intel_blit_texsubimage() argument 76 texImage->Level, xoffset, yoffset, width, height); in intel_blit_texsubimage() 113 xoffset, yoffset, false, in intel_blit_texsubimage() 133 GLint xoffset, GLint yoffset, GLint zoffset, in intelTexSubImage() argument 141 xoffset, yoffset, in intelTexSubImage() 145 xoffset, yoffset, zoffset, in intelTexSubImage()
|
/external/libaom/libaom/aom_dsp/ |
D | variance.c | 152 const uint8_t *a, int a_stride, int xoffset, int yoffset, \ 160 bilinear_filters_2t[yoffset]); \ 167 const uint8_t *a, int a_stride, int xoffset, int yoffset, \ 177 bilinear_filters_2t[yoffset]); \ 184 const uint8_t *a, int a_stride, int xoffset, int yoffset, \ 194 bilinear_filters_2t[yoffset]); \ 482 const uint8_t *src, int src_stride, int xoffset, int yoffset, \ 490 fdata3, temp2, W, W, H, W, bilinear_filters_2t[yoffset]); \ 497 const uint8_t *src, int src_stride, int xoffset, int yoffset, \ 505 fdata3, temp2, W, W, H, W, bilinear_filters_2t[yoffset]); \ [all …]
|
D | variance.h | 45 int xoffset, int yoffset, 50 const uint8_t *a, int a_stride, int xoffset, int yoffset, const uint8_t *b, 58 const uint8_t *a, int a_stride, int xoffset, int yoffset, const uint8_t *b, 68 const uint8_t *src, int src_stride, int xoffset, int yoffset, 81 const uint8_t *pred, int pred_stride, int xoffset, int yoffset,
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_tex_image.c | 180 GLint xoffset, GLint yoffset, GLint zoffset, in intel_texsubimage_tiled_memcpy() argument 283 __func__, texImage->Level, xoffset, yoffset, width, height, in intel_texsubimage_tiled_memcpy() 292 yoffset += level_y; in intel_texsubimage_tiled_memcpy() 296 yoffset, yoffset + height, in intel_texsubimage_tiled_memcpy() 314 GLint xoffset, GLint yoffset, GLint zoffset, in intel_upload_tex() argument 334 xoffset, yoffset, zoffset, in intel_upload_tex() 342 xoffset, yoffset, zoffset, in intel_upload_tex() 349 xoffset, yoffset, zoffset, in intel_upload_tex() 386 GLint xoffset, GLint yoffset, GLint zoffset, in intelTexSubImage() argument 398 intel_upload_tex(ctx, dims, texImage, xoffset, yoffset, zoffset, in intelTexSubImage() [all …]
|
D | intel_pixel_read.c | 68 GLint xoffset, GLint yoffset, in intel_readpixels_tiled_memcpy() argument 171 yoffset += slice_offset_y; in intel_readpixels_tiled_memcpy() 185 yoffset = rb->Height - yoffset - height; in intel_readpixels_tiled_memcpy() 196 __func__, xoffset, yoffset, width, height, in intel_readpixels_tiled_memcpy() 203 yoffset, yoffset + height, in intel_readpixels_tiled_memcpy()
|
/external/libvpx/libvpx/vp8/common/mips/dspr2/ |
D | filter_dspr2.c | 861 unsigned int output_height, int xoffset, int yoffset, in vp8_filter_block2d_first_pass16_4tap() argument 879 if (yoffset == 0) { in vp8_filter_block2d_first_pass16_4tap() 1110 int output_pitch, int yoffset) { in vp8_filter_block2d_second_pass4() argument 1128 vector1b = sub_pel_filterss[yoffset][0]; in vp8_filter_block2d_second_pass4() 1129 vector2b = sub_pel_filterss[yoffset][2]; in vp8_filter_block2d_second_pass4() 1130 vector3b = sub_pel_filterss[yoffset][1]; in vp8_filter_block2d_second_pass4() 1459 unsigned int yoffset) { in vp8_filter_block2d_second_pass_8() argument 1476 vector1b = sub_pel_filterss[yoffset][0]; in vp8_filter_block2d_second_pass_8() 1477 vector2b = sub_pel_filterss[yoffset][2]; in vp8_filter_block2d_second_pass_8() 1478 vector3b = sub_pel_filterss[yoffset][1]; in vp8_filter_block2d_second_pass_8() [all …]
|
/external/angle/src/tests/gl_tests/ |
D | VulkanUniformUpdatesTest.cpp | 444 const GLsizei yoffset = y * kHalfY + subY; in TEST_P() local 447 glTexSubImage2D(GL_TEXTURE_2D, 0, xoffset, yoffset, 1, 1, GL_RGBA, in TEST_P() 464 const GLsizei yoffset = y * kHalfY; in TEST_P() local 467 EXPECT_PIXEL_RECT_EQ(xoffset, yoffset, kHalfX, kHalfY, kColor); in TEST_P() 520 const GLsizei yoffset = kHalfY; in TEST_P() local 522 EXPECT_PIXEL_RECT_EQ(xoffset, yoffset, kHalfX, kHalfY, GLColor::green); in TEST_P() 532 EXPECT_PIXEL_RECT_EQ(xoffset, yoffset, kHalfX, kHalfY, GLColor::red); in TEST_P() 538 EXPECT_PIXEL_RECT_EQ(xoffset, yoffset, kHalfX, kHalfY, GLColor::green); in TEST_P() 550 EXPECT_PIXEL_RECT_EQ(xoffset, yoffset, kHalfX, kHalfY, expectedColor); in TEST_P() 699 const GLsizei yoffset = kHalfY; in TEST_P() local [all …]
|