Home
last modified time | relevance | path

Searched refs:rowStride (Results 1 - 12 of 12) sorted by relevance

/third_party/mesa3d/src/mesa/main/
H A Dtexcompress_bptc.c39 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_float()
45 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgb_float()
52 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_signed_float()
55 fetch_bptc_rgb_float(map, rowStride, i, j, texel, true); in fetch_bptc_rgb_signed_float()
60 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgb_unsigned_float()
63 fetch_bptc_rgb_float(map, rowStride, i, j, texel, false); in fetch_bptc_rgb_unsigned_float()
68 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm_bytes()
73 block = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_bptc_rgba_unorm_bytes()
80 GLint rowStride, GLint i, GLint j, in fetch_bptc_rgba_unorm()
85 fetch_bptc_rgba_unorm_bytes(map, rowStride, in fetch_bptc_rgba_unorm()
38 fetch_bptc_rgb_float(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel, bool is_signed) fetch_bptc_rgb_float() argument
51 fetch_bptc_rgb_signed_float(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_bptc_rgb_signed_float() argument
59 fetch_bptc_rgb_unsigned_float(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_bptc_rgb_unsigned_float() argument
67 fetch_bptc_rgba_unorm_bytes(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLubyte *texel) fetch_bptc_rgba_unorm_bytes() argument
79 fetch_bptc_rgba_unorm(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_bptc_rgba_unorm() argument
94 fetch_bptc_srgb_alpha_unorm(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_bptc_srgb_alpha_unorm() argument
[all...]
H A Dtexcompress_rgtc.c316 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_red_rgtc1()
319 util_format_unsigned_fetch_texel_rgtc(rowStride, map, i, j, &red, 1); in fetch_red_rgtc1()
328 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_l_latc1()
331 util_format_unsigned_fetch_texel_rgtc(rowStride, map, i, j, &red, 1); in fetch_l_latc1()
340 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_signed_red_rgtc1()
343 util_format_signed_fetch_texel_rgtc(rowStride, (const GLbyte *) map, in fetch_signed_red_rgtc1()
353 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_signed_l_latc1()
356 util_format_signed_fetch_texel_rgtc(rowStride, (GLbyte *) map, in fetch_signed_l_latc1()
366 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rg_rgtc2()
369 util_format_unsigned_fetch_texel_rgtc(rowStride, in fetch_rg_rgtc2()
315 fetch_red_rgtc1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_red_rgtc1() argument
327 fetch_l_latc1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_l_latc1() argument
339 fetch_signed_red_rgtc1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_signed_red_rgtc1() argument
352 fetch_signed_l_latc1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_signed_l_latc1() argument
365 fetch_rg_rgtc2(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_rg_rgtc2() argument
382 fetch_la_latc2(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_la_latc2() argument
400 fetch_signed_rg_rgtc2(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_signed_rg_rgtc2() argument
418 fetch_signed_la_latc2(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_signed_la_latc2() argument
[all...]
H A Dtexcompress_s3tc.c264 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rgb_dxt1()
267 fetch_2d_texel_rgb_dxt1(rowStride, map, i, j, tex); in fetch_rgb_dxt1()
276 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rgba_dxt1()
279 fetch_2d_texel_rgba_dxt1(rowStride, map, i, j, tex); in fetch_rgba_dxt1()
288 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rgba_dxt3()
291 fetch_2d_texel_rgba_dxt3(rowStride, map, i, j, tex); in fetch_rgba_dxt3()
300 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_rgba_dxt5()
303 fetch_2d_texel_rgba_dxt5(rowStride, map, i, j, tex); in fetch_rgba_dxt5()
313 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_srgb_dxt1()
316 fetch_2d_texel_rgb_dxt1(rowStride, ma in fetch_srgb_dxt1()
263 fetch_rgb_dxt1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_rgb_dxt1() argument
275 fetch_rgba_dxt1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_rgba_dxt1() argument
287 fetch_rgba_dxt3(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_rgba_dxt3() argument
299 fetch_rgba_dxt5(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_rgba_dxt5() argument
312 fetch_srgb_dxt1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_srgb_dxt1() argument
324 fetch_srgba_dxt1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_srgba_dxt1() argument
336 fetch_srgba_dxt3(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_srgba_dxt3() argument
348 fetch_srgba_dxt5(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_srgba_dxt5() argument
[all...]
H A Dtexcompress_fxt1.c101 int32_t rowStride, int32_t i, int32_t j, float *texel) in fetch_rgb_fxt1()
103 map += rowStride * (i / 8); in fetch_rgb_fxt1()
111 int32_t rowStride, int32_t i, int32_t j, float *texel) in fetch_rgba_fxt1()
113 map += rowStride * (i / 8); in fetch_rgba_fxt1()
100 fetch_rgb_fxt1(const uint8_t *map, int32_t rowStride, int32_t i, int32_t j, float *texel) fetch_rgb_fxt1() argument
110 fetch_rgba_fxt1(const uint8_t *map, int32_t rowStride, int32_t i, int32_t j, float *texel) fetch_rgba_fxt1() argument
H A Dtexcompress_etc.c1271 GLint rowStride, GLint i, GLint j, in fetch_etc1_rgb8()
1278 src = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 8; in fetch_etc1_rgb8()
1292 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_etc2_rgb8()
1298 src = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 8; in fetch_etc2_rgb8()
1313 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_etc2_srgb8()
1319 src = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 8; in fetch_etc2_srgb8()
1334 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_etc2_rgba8_eac()
1340 src = map + (((rowStride + 3) / 4) * (j / 4) + (i / 4)) * 16; in fetch_etc2_rgba8_eac()
1353 GLint rowStride, GLint i, GLint j, GLfloat *texel) in fetch_etc2_srgb8_alpha8_eac()
1359 src = map + (((rowStride in fetch_etc2_srgb8_alpha8_eac()
1270 fetch_etc1_rgb8(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc1_rgb8() argument
1291 fetch_etc2_rgb8(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_rgb8() argument
1312 fetch_etc2_srgb8(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_srgb8() argument
1333 fetch_etc2_rgba8_eac(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_rgba8_eac() argument
1352 fetch_etc2_srgb8_alpha8_eac(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_srgb8_alpha8_eac() argument
1371 fetch_etc2_r11_eac(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_r11_eac() argument
1390 fetch_etc2_rg11_eac(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_rg11_eac() argument
1414 fetch_etc2_signed_r11_eac(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_signed_r11_eac() argument
1433 fetch_etc2_signed_rg11_eac(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_signed_rg11_eac() argument
1457 fetch_etc2_rgb8_punchthrough_alpha1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_rgb8_punchthrough_alpha1() argument
1478 fetch_etc2_srgb8_punchthrough_alpha1(const GLubyte *map, GLint rowStride, GLint i, GLint j, GLfloat *texel) fetch_etc2_srgb8_punchthrough_alpha1() argument
[all...]
H A Dtexcompress.h53 GLint rowStride,
/third_party/skia/src/codec/
H A DSkStubHeifDecoderAPI.h83 virtual void setDstBuffer(uint8_t *dstBuffer, size_t rowStride, void *context) = 0;
90 virtual void setGainmapDstBuffer(uint8_t* dstBuffer, size_t rowStride) = 0;
122 void setDstBuffer(uint8_t *dstBuffer, size_t rowStride, void *context) override {
142 void setGainmapDstBuffer(uint8_t* dstBuffer, size_t rowStride) override {
/third_party/skia/third_party/externals/angle2/util/
H A Dpng_utils.cpp102 const uint32_t rowStride = width * 3; in SavePNGRGB() local
105 uint32_t rowOffset = row * rowStride; in SavePNGRGB()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkDeviceMemoryExternalAndroid.cpp478 return static_cast<int>(ahbPlanes.planes[0].rowStride); in externalImageRowPitchBytes()
480 return static_cast<int>(ahbPlanes.planes[1].rowStride); in externalImageRowPitchBytes()
482 return static_cast<int>(ahbPlanes.planes[2].rowStride); in externalImageRowPitchBytes()
491 return static_cast<int>(ahbPlanes.planes[0].rowStride); in externalImageRowPitchBytes()
/third_party/mesa3d/include/android_stub/android/
H A Dhardware_buffer.h318 uint32_t rowStride; ///< Distance in bytes from the first value of one row of the image to member
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DImageTest.cpp465 size_t getLayerPitch(size_t height, size_t rowStride) in getLayerPitch() argument
471 const size_t layerSize = height * rowStride; in getLayerPitch()
503 size_t layerPitch = getLayerPitch(planeHeight, plane.rowStride); in writeAHBData()
520 y * plane.rowStride + x * plane.pixelStride; in writeAHBData()
812 size_t layerPitch = getLayerPitch(planeHeight, plane.rowStride); in verifyResultAHB()
846 z * layerPitch + y * plane.rowStride + in verifyResultAHB()
861 const uint32_t rowStride = aHardwareBufferDescription.stride * data[0].bytesPerPixel; in verifyResultAHB() local
862 size_t layerPitch = getLayerPitch(height, rowStride); in verifyResultAHB()
899 z * layerPitch + y * rowStride + in verifyResultAHB()
/third_party/vk-gl-cts/framework/qphelper/
H A DqpTestLog.c789 static deBool compressImagePNG (Buffer* buffer, qpImageFormat imageFormat, int width, int height, int rowStride, const void* data) in compressImagePNG() argument
807 rowPointers[ndx] = (png_byte*)((const deUint8*)data + ndx*rowStride); in compressImagePNG()

Completed in 15 milliseconds