Home
last modified time | relevance | path

Searched defs:Vertex (Results 1 – 25 of 173) sorted by relevance

1234567

/aosp_15_r20/external/swiftshader/src/Device/
H A DVertex.hpp23 struct alignas(16) Vertex struct
26 {
38 float pointSize;
40 int clipFlags;
41 int cullMask;
42 float clipDistance[MAX_CLIP_DISTANCES];
43 float cullDistance[MAX_CLIP_DISTANCES];
46 {
51 } projected;
53 alignas(16) float v[MAX_INTERFACE_COMPONENTS];
/aosp_15_r20/external/skia/src/gpu/ganesh/geometry/
H A DGrTriangulator.h294 struct GrTriangulator::Vertex { struct
295 Vertex(const SkPoint& point, uint8_t alpha) in Vertex() argument
307 SkPoint fPoint; // Vertex position argument
308 Vertex* fPrev; // Linked list of contours, then Y-sorted vertices. argument
309 Vertex* fNext; // " argument
316 Vertex* fPartner; // Corresponding inner or outer vertex (for AA). argument
327 VertexList(Vertex* head, Vertex* tail) : fHead(head), fTail(tail) {} in VertexList() argument
/aosp_15_r20/frameworks/base/libs/hwui/
H A DVertex.h30 struct Vertex { struct
42 static inline void set(Vertex* vertex, float x, float y) { in set() argument
47 static inline void set(Vertex* vertex, Vector2 val) { set(vertex, val.x, val.y); } in set() argument
49 static inline void copyWithOffset(Vertex* vertex, const Vertex& src, float x, float y) { in copyWithOffset() argument
/aosp_15_r20/external/angle/src/libANGLE/renderer/d3d/d3d11/
H A DStateManager11.h68 struct Vertex struct
70 Vertex() in Vertex() argument
93 uint32_t firstVertex; argument
100 static_assert(sizeof(Vertex) % 16u == 0, argument
/aosp_15_r20/external/swiftshader/tests/VulkanBenchmarks/
H A DTriangleBenchmarks.cpp43 struct Vertex in TriangleSolidColor() struct
45 float position[3]; in TriangleSolidColor()
94 struct Vertex in TriangleInterpolateColor() struct
96 float position[3]; in TriangleInterpolateColor()
97 float color[3]; in TriangleInterpolateColor()
153 struct Vertex in TriangleSampleTexture() struct
155 float position[3]; in TriangleSampleTexture()
156 float texCoord[2]; in TriangleSampleTexture()
/aosp_15_r20/prebuilts/go/linux-x86/test/fixedbugs/
Dissue45851.go27 type Vertex struct { struct
28 BaseValue Value
29 name string
31 func (v *Vertex) Kind() Kind {
47 func (v *Vertex) IsClosedStruct() bool {
51 func equalVertex(x *Vertex, v Value, flags Flag) bool {
/aosp_15_r20/external/skia/gm/
H A Dmesh.cpp467 struct Vertex { struct in skiagm::MeshColorSpaceGM
468 SkPoint pos;
469 SkColor4f color;
644 struct Vertex { struct in skiagm::MeshUniformsGM
645 SkPoint pos;
646 SkPoint tex;
877 struct Vertex { struct in skiagm::MeshUpdateGM
878 SkPoint pos;
879 SkPoint tex;
1203 struct Vertex { struct in skiagm::PictureMesh
[all …]
H A Dbeziereffects.cpp169 struct Vertex { struct in skiagm::BezierConicTestOp
170 SkPoint fPosition;
171 float fKLM[4]; // The last value is ignored. The effect expects a vec4f.
375 struct Vertex { struct in skiagm::BezierQuadTestOp
376 SkPoint fPosition;
377 float fKLM[4]; // The last value is ignored. The effect expects a vec4f.
/aosp_15_r20/external/rust/android-crates-io/crates/bytemuck/tests/
Doffset_of_tests.rs7 struct Vertex { in test_offset_of_vertex() struct
8 pos: [f32; 2], in test_offset_of_vertex()
9 uv: [u16; 2], in test_offset_of_vertex()
10 color: [u8; 4], in test_offset_of_vertex()
12 unsafe impl Zeroable for Vertex {} in test_offset_of_vertex() implementation
Ddoc_tests.rs71 struct Vertex { in test_offsetof_vertex() struct
72 pos: [f32; 2], in test_offsetof_vertex()
73 uv: [u16; 2], in test_offsetof_vertex()
74 color: [u8; 4], in test_offsetof_vertex()
76 unsafe impl Zeroable for Vertex {} in test_offsetof_vertex() implementation
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/bytemuck-1.15.0/tests/
H A Doffset_of_tests.rs7 struct Vertex { in test_offset_of_vertex() struct
8 pos: [f32; 2], in test_offset_of_vertex()
9 uv: [u16; 2], in test_offset_of_vertex()
10 color: [u8; 4], in test_offset_of_vertex()
12 unsafe impl Zeroable for Vertex {} in test_offset_of_vertex() implementation
H A Ddoc_tests.rs71 struct Vertex { in test_offsetof_vertex() struct
72 pos: [f32; 2], in test_offsetof_vertex()
73 uv: [u16; 2], in test_offsetof_vertex()
74 color: [u8; 4], in test_offsetof_vertex()
76 unsafe impl Zeroable for Vertex {} in test_offsetof_vertex() implementation
/aosp_15_r20/external/angle/src/tests/test_utils/third_party/
H A Dvulkan_command_buffer_utils.h235 struct Vertex struct
250 static const Vertex g_vbData[] = { argument
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/robustness/
H A DvktRobustness1VertexAccessTests.cpp255 struct Vertex in __anoncd86cf3d0602() struct
257 Vec4 position; in __anoncd86cf3d0602()
258 Vec4 unused1; in __anoncd86cf3d0602()
259 Vec4 color1; in __anoncd86cf3d0602()
260 Vec4 color2; in __anoncd86cf3d0602()
300 struct Vertex in __anoncd86cf3d0902() struct
302 Vec4 position; in __anoncd86cf3d0902()
303 Vec4 color1; in __anoncd86cf3d0902()
304 Vec4 unused1; in __anoncd86cf3d0902()
305 Vec4 color2; in __anoncd86cf3d0902()
[all …]
/aosp_15_r20/cts/hostsidetests/adpf/app/hintsession/src/cpp/
H A DModel.h49 struct Vertex { struct
50 constexpr Vertex(const Vector3 &inPosition, const Vector2 &inUV) in Vertex() function
61 inline Model(std::vector<Vertex> vertices, std::vector<Index> indices, in Model() argument
/aosp_15_r20/external/skia/src/gpu/graphite/render/
H A DAnalyticRRectRenderStep.cpp259 struct Vertex { struct
260 SkV2 fPosition;
261 SkV2 fNormal;
262 float fNormalScale;
263 float fCenterWeight;
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageSampleDrawnCubeFaceTests.cpp181 struct Vertex struct
183 Vertex(Vec4 vertices_, Vec2 uv_) : vertices(vertices_), uv(uv_) in Vertex() argument
186 Vec4 vertices;
187 Vec2 uv;
H A DvktImageSampleCompressedTextureTests.cpp191 struct Vertex struct
193 Vertex(Vec4 position_, Vec2 uv_) : position(position_), uv(uv_) in Vertex() function
196 Vec4 position;
197 Vec2 uv;
/aosp_15_r20/external/angle/src/tests/gl_tests/gles1/
H A DBGRATextureTest.cpp54 struct Vertex in TEST_P() struct
56 GLfloat position[3]; in TEST_P()
57 GLfloat uv[2]; in TEST_P()
H A DPalettedTextureTest.cpp67 struct Vertex in TEST_P() struct
69 GLfloat position[3]; in TEST_P()
70 GLfloat uv[2]; in TEST_P()
/aosp_15_r20/external/skia/tests/
H A DGrPipelineDynamicStateTest.cpp90 struct Vertex { struct
112 this->setVertexAttributesWithImplicitOffsets(kAttributes, std::size(kAttributes)); in PipelineDynamicStateTestProcessor() argument
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationImageLayoutTransitionTests.cpp135 struct Vertex struct
137 Vertex(Vec4 vertices_) : vertices(vertices_) in Vertex() function
140 Vec4 vertices;
/aosp_15_r20/external/mesa3d/src/gallium/targets/d3d10umd/tests/
H A Dtri.cpp186 struct Vertex { in main() struct
187 float position[4]; in main()
188 float color[4]; in main()
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/renderpass/
H A DvktRenderPassDepthStencilWriteConditionsTests.cpp133 struct Vertex struct
135 Vertex(Vec4 vertices_) : vertices(vertices_) in Vertex() argument
138 Vec4 vertices;
/aosp_15_r20/hardware/google/gfxstream/host/gl/
DTextureDraw.cpp119 struct Vertex { struct
120 float pos[3];
121 float coord[2];

1234567