Home
last modified time | relevance | path

Searched refs:r_uv (Results 1 – 25 of 54) sorted by relevance

123

/dports/graphics/blender/blender-2.91.0/source/blender/compositor/operations/
H A DCOM_MapUVOperation.cpp100 float r_uv[2], in pixelTransform()
107 read_uv(xy[0], xy[1], r_uv[0], r_uv[1], r_alpha); in pixelTransform()
117 r_deriv[0][0] += uv[0] - r_uv[0]; in pixelTransform()
118 r_deriv[1][0] += uv[1] - r_uv[1]; in pixelTransform()
122 r_deriv[0][0] += r_uv[0] - uv[0]; in pixelTransform()
123 r_deriv[1][0] += r_uv[1] - uv[1]; in pixelTransform()
134 r_deriv[0][1] += uv[0] - r_uv[0]; in pixelTransform()
135 r_deriv[1][1] += uv[1] - r_uv[1]; in pixelTransform()
139 r_deriv[0][1] += r_uv[0] - uv[0]; in pixelTransform()
140 r_deriv[1][1] += r_uv[1] - uv[1]; in pixelTransform()
H A DCOM_DisplaceOperation.cpp85 void DisplaceOperation::pixelTransform(const float xy[2], float r_uv[2], float r_deriv[2][2]) in pixelTransform()
101 read_displacement(xy[0], xy[1], xs, ys, xy, r_uv[0], r_uv[1]); in pixelTransform()
111 r_deriv[0][0] += uv[0] - r_uv[0]; in pixelTransform()
112 r_deriv[1][0] += uv[1] - r_uv[1]; in pixelTransform()
116 r_deriv[0][0] += r_uv[0] - uv[0]; in pixelTransform()
117 r_deriv[1][0] += r_uv[1] - uv[1]; in pixelTransform()
128 r_deriv[0][1] += uv[0] - r_uv[0]; in pixelTransform()
129 r_deriv[1][1] += uv[1] - r_uv[1]; in pixelTransform()
133 r_deriv[0][1] += r_uv[0] - uv[0]; in pixelTransform()
134 r_deriv[1][1] += r_uv[1] - uv[1]; in pixelTransform()
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/intern/
H A Ddisplist_tangent.c74 float r_uv[2], in dl3_ts_GetTextureCoordinate()
81 r_uv[0] = idx[face_num][vert_index] / (float)(dlt->dl->nr - 1); in dl3_ts_GetTextureCoordinate()
82 r_uv[1] = 0.0f; in dl3_ts_GetTextureCoordinate()
166 float r_uv[2], in dlsurf_ts_GetTextureCoordinate()
176 r_uv[0] = (idx / dlt->dl->nr) / (float)(dlt->v_len); in dlsurf_ts_GetTextureCoordinate()
177 r_uv[1] = (idx % dlt->dl->nr) / (float)(dlt->u_len); in dlsurf_ts_GetTextureCoordinate()
179 if (r_uv[0] == 0.0f && ELEM(vert_index, 1, 2)) { in dlsurf_ts_GetTextureCoordinate()
180 r_uv[0] = 1.0f; in dlsurf_ts_GetTextureCoordinate()
182 if (r_uv[1] == 0.0f && ELEM(vert_index, 0, 1)) { in dlsurf_ts_GetTextureCoordinate()
183 r_uv[1] = 1.0f; in dlsurf_ts_GetTextureCoordinate()
/dports/devel/godot-tools/godot-3.2.3-stable/modules/xatlas_unwrap/
H A Dregister_types.cpp40 …t int *p_indices, const int *p_face_materials, int p_index_count, float **r_uv, int **r_vertex, in…
42 …t int *p_indices, const int *p_face_materials, int p_index_count, float **r_uv, int **r_vertex, in… in xatlas_mesh_lightmap_unwrap_callback() argument
86 *r_uv = (float *)malloc(sizeof(float) * output.vertexCount * 2); in xatlas_mesh_lightmap_unwrap_callback()
93 (*r_uv)[i * 2 + 0] = output.vertexArray[i].uv[0] / w; in xatlas_mesh_lightmap_unwrap_callback()
94 (*r_uv)[i * 2 + 1] = output.vertexArray[i].uv[1] / h; in xatlas_mesh_lightmap_unwrap_callback()
/dports/devel/godot/godot-3.2.3-stable/modules/xatlas_unwrap/
H A Dregister_types.cpp40 …t int *p_indices, const int *p_face_materials, int p_index_count, float **r_uv, int **r_vertex, in…
42 …t int *p_indices, const int *p_face_materials, int p_index_count, float **r_uv, int **r_vertex, in… in xatlas_mesh_lightmap_unwrap_callback() argument
86 *r_uv = (float *)malloc(sizeof(float) * output.vertexCount * 2); in xatlas_mesh_lightmap_unwrap_callback()
93 (*r_uv)[i * 2 + 0] = output.vertexArray[i].uv[0] / w; in xatlas_mesh_lightmap_unwrap_callback()
94 (*r_uv)[i * 2 + 1] = output.vertexArray[i].uv[1] / h; in xatlas_mesh_lightmap_unwrap_callback()
/dports/graphics/blender/blender-2.91.0/source/blender/io/alembic/exporter/
H A Dabc_writer_hair.cc170 float r_uv[2], mapfw[4], vec[3]; in write_hair_sample() local
172 psys_interpolate_uvs(tface, face->v4, pa->fuv, r_uv); in write_hair_sample()
173 uv_values.push_back(Imath::V2f(r_uv[0], r_uv[1])); in write_hair_sample()
277 float r_uv[2], tmpnor[3], mapfw[4], vec[3]; in write_hair_child_sample() local
279 psys_interpolate_uvs(tface, face->v4, pc->fuv, r_uv); in write_hair_child_sample()
280 uv_values.push_back(Imath::V2f(r_uv[0], r_uv[1])); in write_hair_child_sample()
/dports/graphics/blender/blender-2.91.0/source/blender/bmesh/intern/
H A Dbmesh_query_uv.c38 float r_uv[2]) in uv_aspect()
41 r_uv[0] = uv[0] * aspect[0]; in uv_aspect()
42 r_uv[1] = uv[1] * aspect[1]; in uv_aspect()
49 #define UV_ASPECT(l, r_uv) uv_aspect(l, aspect, cd_loop_uv_offset, r_uv) argument
/dports/graphics/blender/blender-2.91.0/source/blender/blenlib/
H A DBLI_math_geom.h368 float r_uv[2]);
375 float r_uv[2],
391 float r_uv[2]);
398 float r_uv[2],
406 float r_uv[2],
446 float r_uv[2]);
454 float r_uv[2]);
610 float r_uv[2], const float st[2], const float st0[2], const float st1[2], const float st2[2]);
612 float r_uv[2], const float st[3], const float st0[3], const float st1[3], const float st2[3]);
613 void resolve_quad_uv_v2(float r_uv[2],
[all …]
/dports/graphics/freeimage/FreeImage/Source/LibWebP/src/dsp/
H A Dupsampling_neon.c200 uint8_t *const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/www/firefox-esr/firefox-91.8.0/media/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/devel/godot-tools/godot-3.2.3-stable/thirdparty/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/devel/godot/godot-3.2.3-stable/thirdparty/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t *const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/www/firefox/firefox-99.0/media/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/graphics/webp/libwebp-1.2.1/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/bep/gowebp/libwebp_src/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/devel/godot2/godot-2.1.6-stable/thirdparty/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t *const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t *const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/graphics/opencv/opencv-4.5.3/3rdparty/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/www/zola/zola-0.15.2/cargo-crates/libwebp-sys-0.2.0/vendor/src/dsp/
H A Dupsampling_neon.c200 uint8_t *const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/mail/thunderbird/thunderbird-91.8.0/media/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/lang/spidermonkey78/firefox-78.9.0/media/libwebp/src/dsp/
H A Dupsampling_neon.c200 uint8_t* const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/WebP/src/dsp/
H A Dupsampling_neon.c200 uint8_t *const r_uv = (uint8_t*)((uintptr_t)(uv_buf + 15) & ~15); \
229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \
230 UPSAMPLE_16PIXELS(top_v, cur_v, r_uv + 16); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
240 UPSAMPLE_LAST_BLOCK(top_v, cur_v, leftover, r_uv + 16); \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \

123