/third_party/glfw/deps/ |
H A D | linmath.h | 109 typedef vec4 mat4x4[4]; typedef 110 LINMATH_H_FUNC void mat4x4_identity(mat4x4 M) in mat4x4_identity() 117 LINMATH_H_FUNC void mat4x4_dup(mat4x4 M, mat4x4 const N) in mat4x4_dup() 123 LINMATH_H_FUNC void mat4x4_row(vec4 r, mat4x4 const M, int i) in mat4x4_row() 129 LINMATH_H_FUNC void mat4x4_col(vec4 r, mat4x4 const M, int i) in mat4x4_col() 135 LINMATH_H_FUNC void mat4x4_transpose(mat4x4 M, mat4x4 const N) in mat4x4_transpose() 144 LINMATH_H_FUNC void mat4x4_add(mat4x4 M, mat4x4 cons in mat4x4_transpose() [all...] |
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
H A D | type_mat.hpp | 344 typedef lowp_mat4x4 mat4x4; typedef 354 typedef mediump_mat4x4 mat4x4; typedef 399 typedef highp_mat4x4 mat4x4; typedef 416 typedef mat4x4 mat4;
|
/third_party/skia/third_party/externals/tint/src/resolver/ |
H A D | array_accessor_test.cc | 47 Global("my_var", ty.mat4x4<f32>(), ast::StorageClass::kPrivate); in TEST_F() 68 GlobalConst("my_var", ty.mat4x4<f32>(), Construct(ty.mat4x4<f32>())); in TEST_F() 79 GlobalConst("my_var", ty.mat4x4<f32>(), Construct(ty.mat4x4<f32>())); in TEST_F()
|
H A D | call_test.cc | 46 using mat4x4 = builder::mat4x4<T>;
|
H A D | inferred_type_test.cc | 39 using mat4x4 = builder::mat4x4<T>;
|
H A D | entry_point_validation_test.cc | 43 using mat4x4 = builder::mat4x4<T>; 365 ParamsFor<mat4x4<f32>>(false), //
|
H A D | type_validation_test.cc | 44 using mat4x4 = builder::mat4x4<T>; 1018 ParamsFor<mat4x4<f32>>(3, 4), 1078 ParamsFor<mat4x4<f32>>(2),
|
H A D | decoration_validation_test.cc | 38 using mat4x4 = builder::mat4x4<T>; 913 ParamsFor<mat4x4<f32>>(default_mat4x4.size, true), 924 ParamsFor<mat4x4<f32>>(default_mat4x4.size - 1, false), 935 ParamsFor<mat4x4<f32>>(default_mat4x4.align * 7, true), 946 ParamsFor<mat4x4<f32>>((default_mat4x4.align - 1) * 7, false)));
|
H A D | bitcast_validation_test.cc | 69 Type::Create<builder::mat4x4<builder::f32>>(),
|
/third_party/skia/third_party/externals/tint/src/writer/glsl/ |
H A D | generator_impl_sanitizer_test.cc | 305 // var a : array<mat4x4<f32>, 4>; in TEST_F() 306 // let ap : ptr<function, array<mat4x4<f32>, 4>> = &a; in TEST_F() 307 // let mp : ptr<function, mat4x4<f32>> = &(*ap)[3]; in TEST_F() 310 auto* a = Var("a", ty.array(ty.mat4x4<f32>(), 4)); in TEST_F() 313 ty.pointer(ty.array(ty.mat4x4<f32>(), 4), ast::StorageClass::kFunction), in TEST_F() 316 Const("mp", ty.pointer(ty.mat4x4<f32>(), ast::StorageClass::kFunction), in TEST_F()
|
/third_party/skia/third_party/externals/tint/src/writer/hlsl/ |
H A D | generator_impl_sanitizer_test.cc | 299 // var a : array<mat4x4<f32>, 4>; in TEST_F() 300 // let ap : ptr<function, array<mat4x4<f32>, 4>> = &a; in TEST_F() 301 // let mp : ptr<function, mat4x4<f32>> = &(*ap)[3]; in TEST_F() 304 auto* a = Var("a", ty.array(ty.mat4x4<f32>(), 4)); in TEST_F() 307 ty.pointer(ty.array(ty.mat4x4<f32>(), 4), ast::StorageClass::kFunction), in TEST_F() 310 Const("mp", ty.pointer(ty.mat4x4<f32>(), ast::StorageClass::kFunction), in TEST_F()
|
/third_party/skia/third_party/externals/tint/src/writer/msl/ |
H A D | generator_impl_test.cc | 223 Member("m2", ty.mat4x4<f32>()), in TEST_F() 283 Global("m9", ty.mat4x4<f32>(), ast::StorageClass::kWorkgroup); in TEST_F()
|
H A D | generator_impl_constructor_test.cc | 135 WrapInFunction(mat4x4<f32>()); in TEST_F()
|
/third_party/glfw/tests/ |
H A D | msaa.c | 183 mat4x4 m, p, mvp; in main()
|
H A D | tearing.c | 217 mat4x4 m, p, mvp; in main()
|
H A D | reopen.c | 202 mat4x4 m, p, mvp; in main()
|
/third_party/glfw/examples/ |
H A D | triangle-opengl.c | 150 mat4x4 m, p, mvp; in main()
|
H A D | triangle-opengles.c | 151 mat4x4 m, p, mvp; in main()
|
H A D | offscreen.c | 82 mat4x4 mvp; in main()
|
H A D | sharing.c | 213 mat4x4 mvp; in main()
|
H A D | splitview.c | 157 mat4x4 view; in drawGrid() 222 mat4x4 view, projection; in drawAllViews()
|
H A D | wave.c | 370 mat4x4 projection; in framebuffer_size_callback()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
H A D | simd_mat4.hpp | 71 mat4x4 const & m);
|
H A D | type_aligned.hpp | 763 GLM_ALIGNED_TYPEDEF(mat4x4, aligned_mat4x4, 16);
|
/third_party/skia/third_party/externals/tint/src/writer/spirv/ |
H A D | builder_type_test.cc | 335 Member("c", ty.mat4x4<f32>()), in TEST_F() 375 Member("c", ty.mat4x4<f32>()), in TEST_F() 416 auto* rtarr_mat4x4 = ty.array(ty.mat4x4<f32>()); // Runtime array in TEST_F()
|