/third_party/ffmpeg/libavutil/ |
H A D | spherical.c | 61 const char *av_spherical_projection_name(enum AVSphericalProjection projection) in av_spherical_projection_name() argument 63 if ((unsigned)projection >= FF_ARRAY_ELEMS(spherical_projection_names)) in av_spherical_projection_name() 66 return spherical_projection_names[projection]; in av_spherical_projection_name()
|
H A D | spherical.h | 54 * equirectangular projection. 69 * using equirectangular projection. The @ref bounding fields indicate 77 * information about projection, initial layout, and any other view modifier. 86 enum AVSphericalProjection projection; member 107 * See this equirectangular projection as example: 164 * projection type (@ref AV_SPHERICAL_EQUIRECTANGULAR_TILE), 178 * @note This value is valid for only for the cubemap projection type 213 * @param projection The input AVSphericalProjection. 217 const char *av_spherical_projection_name(enum AVSphericalProjection projection);
|
/third_party/skia/third_party/externals/angle2/src/android_system_settings/src/com/android/angle/common/ |
H A D | SearchProvider.java | 48 public Cursor queryXmlResources(String[] projection) in queryXmlResources() argument 54 public Cursor queryRawData(String[] projection) in queryRawData() argument 73 public Cursor queryNonIndexableKeys(String[] projection) in queryNonIndexableKeys() argument
|
/third_party/protobuf/csharp/src/Google.Protobuf/Collections/ |
H A D | MapField.cs | 757 private readonly Func<KeyValuePair<TKey, TValue>, T> projection;
field in Google.Protobuf.Collections.MapField.MapView 762 Func<KeyValuePair<TKey, TValue>, T> projection,
in MapView() 766 this.projection = projection;
in MapView() 811 return parent.list.Select(projection).GetEnumerator();
in GetEnumerator() 760 MapView( MapField<TKey, TValue> parent, Func<KeyValuePair<TKey, TValue>, T> projection, Func<T, bool> containsCheck) MapView() argument
|
/third_party/glfw/examples/ |
H A D | wave.c | 155 // We don't want to modify the projection matrix in draw_scene() 370 mat4x4 projection; in framebuffer_size_callback() local 378 // Change to the projection matrix and set our viewing volume in framebuffer_size_callback() 380 mat4x4_perspective(projection, in framebuffer_size_callback() 384 glLoadMatrixf((const GLfloat*) projection); in framebuffer_size_callback()
|
H A D | boing.c | 219 mat4x4 projection, view; in reshape() local 224 mat4x4_perspective( projection, in reshape() 228 glLoadMatrixf((const GLfloat*) projection); in reshape()
|
H A D | splitview.c | 222 mat4x4 view, projection; in drawAllViews() local 251 // Setup orthogonal projection matrix in drawAllViews() 312 // Setup perspective projection matrix in drawAllViews() 314 mat4x4_perspective(projection, in drawAllViews() 318 glLoadMatrixf((const GLfloat*) projection); in drawAllViews()
|
H A D | particles.c | 793 mat4x4 projection; in draw_scene() local 799 mat4x4_perspective(projection, in draw_scene() 808 glLoadMatrixf((const GLfloat*) projection); in draw_scene()
|
/third_party/rust/crates/pin-utils/src/ |
H A D | lib.rs | 17 mod projection; modules
|
/third_party/rust/crates/pin-utils/tests/ |
H A D | projection.rs | 18 fn projection() { in projection() functions
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_showinfo.c | 77 if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR) in dump_spherical() 79 else if (spherical->projection == AV_SPHERICAL_CUBEMAP) in dump_spherical() 81 else if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) in dump_spherical() 93 if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) { in dump_spherical() 100 } else if (spherical->projection == AV_SPHERICAL_CUBEMAP) { in dump_spherical()
|
/third_party/ffmpeg/libavformat/ |
H A D | matroskadec.c | 217 MatroskaTrackVideoProjection projection; member 517 { MATROSKA_ID_VIDEOPROJECTION, EBML_NEST, 0, 0, offsetof(MatroskaTrackVideo, projection), { .n = matroska_track_video_projection } }, 2254 "projection in stream %u (yaw %f, pitch %f, roll %f)\n", in mkv_create_display_matrix() 2280 const MatroskaTrackVideoProjection *mkv_projection = &track->video.projection; in mkv_parse_video_projection() 2282 enum AVSphericalProjection projection; in mkv_parse_video_projection() local 2293 switch (track->video.projection.type) { in mkv_parse_video_projection() 2297 if (track->video.projection.private.size == 20) { in mkv_parse_video_projection() 2310 } else if (track->video.projection.private.size != 0) { in mkv_parse_video_projection() 2316 projection = AV_SPHERICAL_EQUIRECTANGULAR_TILE; in mkv_parse_video_projection() 2318 projection in mkv_parse_video_projection() [all...] |
H A D | dump.c | 381 av_log(ctx, AV_LOG_INFO, "%s ", av_spherical_projection_name(spherical->projection)); in dump_spherical() 388 if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) { in dump_spherical() 395 } else if (spherical->projection == AV_SPHERICAL_CUBEMAP) { in dump_spherical()
|
H A D | matroskaenc.c | 1388 if (spherical->projection != AV_SPHERICAL_EQUIRECTANGULAR && in mkv_write_video_projection() 1389 spherical->projection != AV_SPHERICAL_EQUIRECTANGULAR_TILE && in mkv_write_video_projection() 1390 spherical->projection != AV_SPHERICAL_CUBEMAP) { in mkv_write_video_projection() 1391 av_log(s, AV_LOG_WARNING, "Unknown projection type\n"); in mkv_write_video_projection() 1397 switch (spherical->projection) { in mkv_write_video_projection() 1403 if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR) { in mkv_write_video_projection()
|
H A D | mov.c | 5997 enum AVSphericalProjection projection; 6034 av_log(c->fc, AV_LOG_ERROR, "Missing projection box\n"); 6044 av_log(c->fc, AV_LOG_ERROR, "Missing projection header box\n"); 6080 projection = AV_SPHERICAL_CUBEMAP; 6097 projection = AV_SPHERICAL_EQUIRECTANGULAR_TILE; 6099 projection = AV_SPHERICAL_EQUIRECTANGULAR; 6102 av_log(c->fc, AV_LOG_ERROR, "Unknown projection type: %s\n", av_fourcc2str(tag)); 6110 sc->spherical->projection = projection; 6153 sc->spherical->projection [all...] |
H A D | movenc.c | 1926 if (spherical_mapping->projection != AV_SPHERICAL_EQUIRECTANGULAR && in mov_write_sv3d_tag() 1927 spherical_mapping->projection != AV_SPHERICAL_EQUIRECTANGULAR_TILE && in mov_write_sv3d_tag() 1928 spherical_mapping->projection != AV_SPHERICAL_CUBEMAP) { in mov_write_sv3d_tag() 1929 av_log(s, AV_LOG_WARNING, "Unsupported projection %d. sv3d not written.\n", spherical_mapping->projection); in mov_write_sv3d_tag() 1955 switch (spherical_mapping->projection) { in mov_write_sv3d_tag()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | machine-graph-verifier.cc | 42 MachineRepresentation GetProjectionType(Node const* projection) { in GetProjectionType() argument 43 size_t index = ProjectionIndexOf(projection->op()); in GetProjectionType() 44 Node* input = projection->InputAt(0); in GetProjectionType()
|
H A D | effect-control-linearizer.cc | 2397 Node* projection = __ Int32MulWithOverflow(lhs, rhs); in LowerCheckedInt32Mul() local 2398 Node* check = __ Projection(1, projection); in LowerCheckedInt32Mul() 2402 Node* value = __ Projection(0, projection); in LowerCheckedInt32Mul()
|
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluTextureTestUtil.cpp | 309 static float computeProjectedTriLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& projection, float wx, float wy, float width, float height) in computeProjectedTriLod() argument 312 float dudx = triDerivateX(u, projection, wx, width, wy/height); in computeProjectedTriLod() 313 float dudy = triDerivateY(u, projection, wy, height, wx/width); in computeProjectedTriLod() 319 static float computeProjectedTriLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& v, const tcu::Vec3& projection, float wx, float wy, float width, float height) in computeProjectedTriLod() argument 322 float dudx = triDerivateX(u, projection, wx, width, wy/height); in computeProjectedTriLod() 323 float dvdx = triDerivateX(v, projection, wx, width, wy/height); in computeProjectedTriLod() 324 float dudy = triDerivateY(u, projection, wy, height, wx/width); in computeProjectedTriLod() 325 float dvdy = triDerivateY(v, projection, wy, height, wx/width); in computeProjectedTriLod() 331 static float computeProjectedTriLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& v, const tcu::Vec3& w, const tcu::Vec3& projection, float wx, float wy, float width, float height) in computeProjectedTriLod() argument 334 float dudx = triDerivateX(u, projection, w in computeProjectedTriLod() [all...] |
/third_party/ffmpeg/tests/fate/ |
H A D | matroska.mak | 118 # This test the following features of the Matroska muxer: Writing projection
|
/third_party/skia/third_party/externals/d3d12allocator/src/ |
H A D | D3D12Sample.cpp | 1172 const mat4 projection = mat4::Perspective(
in Update() local 1181 const mat4 viewProjection = view * projection;
in Update()
|
/third_party/ffmpeg/fftools/ |
H A D | ffprobe.c | 2293 print_str("projection", av_spherical_projection_name(spherical->projection)); in print_pkt_side_data() 2294 if (spherical->projection == AV_SPHERICAL_CUBEMAP) { in print_pkt_side_data() 2296 } else if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) { in print_pkt_side_data()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |