Home
last modified time | relevance | path

Searched refs:VertexAttribType (Results 1 – 25 of 153) sorted by relevance

1234567

/third_party/skia/experimental/graphite/src/
DGraphicsPipelineDesc.h31 VertexAttribType cpuType, in Attribute()
43 constexpr VertexAttribType cpuType() const { return fCPUType; } in cpuType()
51 VertexAttribType fCPUType = VertexAttribType::kFloat;
197 static constexpr inline size_t VertexAttribTypeSize(VertexAttribType type) { in VertexAttribTypeSize()
199 case VertexAttribType::kFloat: in VertexAttribTypeSize()
201 case VertexAttribType::kFloat2: in VertexAttribTypeSize()
203 case VertexAttribType::kFloat3: in VertexAttribTypeSize()
205 case VertexAttribType::kFloat4: in VertexAttribTypeSize()
207 case VertexAttribType::kHalf: in VertexAttribTypeSize()
209 case VertexAttribType::kHalf2: in VertexAttribTypeSize()
[all …]
DDrawTypes.h113 enum class VertexAttribType : uint8_t { enum
151 static const int kVertexAttribTypeCount = (int)(VertexAttribType::kLast) + 1;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DFormat_table_autogen.cpp27 …, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, false, false, gl::VertexAttribType::InvalidEnum …
28 …meric_limits<GLuint>::max(), false, false, false, false, false, gl::VertexAttribType::InvalidEnum …
29 …meric_limits<GLuint>::max(), false, false, false, false, false, gl::VertexAttribType::InvalidEnum …
30 …meric_limits<GLuint>::max(), false, false, false, false, false, gl::VertexAttribType::InvalidEnum …
31 …d::numeric_limits<GLuint>::max(), false, false, false, false, false, gl::VertexAttribType::Float },
32 …d::numeric_limits<GLuint>::max(), false, false, false, false, false, gl::VertexAttribType::Float },
33 …meric_limits<GLuint>::max(), false, false, false, false, false, gl::VertexAttribType::InvalidEnum …
34 …meric_limits<GLuint>::max(), false, false, false, false, false, gl::VertexAttribType::InvalidEnum …
35 …LOAT, 0, 0, 0, 16, 0, 0, 0, 2, 1, false, false, false, false, false, gl::VertexAttribType::Float },
36 …meric_limits<GLuint>::max(), false, false, false, false, false, gl::VertexAttribType::InvalidEnum …
[all …]
DFormat.h48 gl::VertexAttribType vertexAttribType);
114 gl::VertexAttribType vertexAttribType;
152 gl::VertexAttribType vertexAttribType) in Format()
230 return vertexAttribType == gl::VertexAttribType::HalfFloat; in isVertexTypeHalfFloat()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
DFormat_table_autogen.cpp27 …llptr, GL_NONE, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false, false, gl::VertexAttribType::InvalidEnum …
28 …GLfloat>, GL_FLOAT, 0, 0, 0, 16, 0, 0, 0, 2, 1, false, false, false, gl::VertexAttribType::Float },
29 … 0, 2, std::numeric_limits<GLuint>::max(), false, false, false, gl::VertexAttribType::InvalidEnum …
30 …GLfloat>, GL_FLOAT, 0, 0, 0, 32, 0, 0, 0, 4, 3, false, false, false, gl::VertexAttribType::Float },
31 …NED_NORMALIZED, 0, 0, 0, 8, 0, 0, 0, 1, 0, false, false, false, gl::VertexAttribType::InvalidEnum …
32 … 0, 16, std::numeric_limits<GLuint>::max(), true, false, false, gl::VertexAttribType::InvalidEnum …
33 … 0, 16, std::numeric_limits<GLuint>::max(), true, false, false, gl::VertexAttribType::InvalidEnum …
34 … 0, 16, std::numeric_limits<GLuint>::max(), true, false, false, gl::VertexAttribType::InvalidEnum …
35 … 0, 16, std::numeric_limits<GLuint>::max(), true, false, false, gl::VertexAttribType::InvalidEnum …
36 … 0, 16, std::numeric_limits<GLuint>::max(), true, false, false, gl::VertexAttribType::InvalidEnum …
[all …]
DFormat.h46 gl::VertexAttribType vertexAttribType);
108 gl::VertexAttribType vertexAttribType;
144 gl::VertexAttribType vertexAttribType) in Format()
/third_party/skia/experimental/graphite/src/mtl/
DMtlGraphicsPipeline.mm138 static inline MTLVertexFormat attribute_type_to_mtlformat(VertexAttribType type) {
140 case VertexAttribType::kFloat:
142 case VertexAttribType::kFloat2:
144 case VertexAttribType::kFloat3:
146 case VertexAttribType::kFloat4:
148 case VertexAttribType::kHalf:
154 case VertexAttribType::kHalf2:
156 case VertexAttribType::kHalf4:
158 case VertexAttribType::kInt2:
160 case VertexAttribType::kInt3:
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/common/
DPackedEnums.h319 enum class VertexAttribType enum
342 constexpr VertexAttribType FromGLenum<VertexAttribType>(GLenum from)
345 if (packed <= static_cast<GLenum>(VertexAttribType::MaxBasicType))
346 return static_cast<VertexAttribType>(packed);
348 return VertexAttribType::UnsignedInt2101010;
350 return VertexAttribType::Int2101010;
351 return VertexAttribType::InvalidEnum;
354 constexpr GLenum ToGLenum(VertexAttribType from) in ToGLenum()
357 if (from == VertexAttribType::Int2101010) in ToGLenum()
359 if (from == VertexAttribType::UnsignedInt2101010) in ToGLenum()
[all …]
DPackedEnums.cpp250 std::ostream &operator<<(std::ostream &os, VertexAttribType value) in operator <<()
254 case VertexAttribType::Byte: in operator <<()
257 case VertexAttribType::Fixed: in operator <<()
260 case VertexAttribType::Float: in operator <<()
263 case VertexAttribType::HalfFloat: in operator <<()
266 case VertexAttribType::Int: in operator <<()
269 case VertexAttribType::Int2101010: in operator <<()
272 case VertexAttribType::Short: in operator <<()
275 case VertexAttribType::UnsignedByte: in operator <<()
278 case VertexAttribType::UnsignedInt: in operator <<()
[all …]
/third_party/skia/third_party/externals/angle2/src/common/
DPackedEnums.cpp427 std::ostream &operator<<(std::ostream &os, VertexAttribType value) in operator <<()
431 case VertexAttribType::Byte: in operator <<()
434 case VertexAttribType::Fixed: in operator <<()
437 case VertexAttribType::Float: in operator <<()
440 case VertexAttribType::HalfFloat: in operator <<()
443 case VertexAttribType::HalfFloatOES: in operator <<()
446 case VertexAttribType::Int: in operator <<()
449 case VertexAttribType::Int2101010: in operator <<()
452 case VertexAttribType::Int1010102: in operator <<()
455 case VertexAttribType::Short: in operator <<()
[all …]
DPackedEnums.h459 enum class VertexAttribType enum
485 constexpr VertexAttribType FromGLenum<VertexAttribType>(GLenum from)
488 if (packed <= static_cast<GLenum>(VertexAttribType::MaxBasicType))
489 return static_cast<VertexAttribType>(packed);
491 return VertexAttribType::UnsignedInt2101010;
493 return VertexAttribType::HalfFloatOES;
495 return VertexAttribType::Int2101010;
497 return VertexAttribType::UnsignedInt1010102;
499 return VertexAttribType::Int1010102;
500 return VertexAttribType::InvalidEnum;
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
Dformatutils.h254 angle::FormatID GetVertexFormatID(VertexAttribType type,
259 angle::FormatID GetVertexFormatID(const VertexAttribute &attrib, VertexAttribType currentValueType);
260 angle::FormatID GetCurrentValueFormatID(VertexAttribType currentValueType);
281 ANGLE_INLINE ComponentType GetVertexAttributeComponentType(bool pureInteger, VertexAttribType type) in GetVertexAttributeComponentType()
287 case VertexAttribType::Byte: in GetVertexAttributeComponentType()
288 case VertexAttribType::Short: in GetVertexAttributeComponentType()
289 case VertexAttribType::Int: in GetVertexAttributeComponentType()
292 case VertexAttribType::UnsignedByte: in GetVertexAttributeComponentType()
293 case VertexAttribType::UnsignedShort: in GetVertexAttributeComponentType()
294 case VertexAttribType::UnsignedInt: in GetVertexAttributeComponentType()
DVertexAttribute.inc13 : Type(gl::VertexAttribType::Float)
27 Type = gl::VertexAttribType::Float;
36 Type = gl::VertexAttribType::Int;
45 Type = gl::VertexAttribType::UnsignedInt;
Dcapture_gles_1_0_params.cpp37 VertexAttribType typePacked, in CaptureColorPointer_pointer()
271 VertexAttribType typePacked, in CaptureNormalPointer_pointer()
300 VertexAttribType typePacked, in CaptureTexCoordPointer_pointer()
351 VertexAttribType typePacked, in CaptureVertexPointer_pointer()
DVertexArray.h188 VertexAttribType type,
197 VertexAttribType type,
203 VertexAttribType type,
311 VertexAttribType type,
319 VertexAttribType type,
DContext_gles_1_0_autogen.h24 void colorPointer(GLint size, VertexAttribType typePacked, GLsizei stride, \
73 void normalPointer(VertexAttribType typePacked, GLsizei stride, const void *pointer); \
91 void texCoordPointer(GLint size, VertexAttribType typePacked, GLsizei stride, \
106 void vertexPointer(GLint size, VertexAttribType typePacked, GLsizei stride, \
Dcapture_gles_1_0_autogen.h70 VertexAttribType typePacked,
265 VertexAttribType typePacked,
340 VertexAttribType typePacked,
396 VertexAttribType typePacked,
415 VertexAttribType typePacked,
549 VertexAttribType typePacked,
566 VertexAttribType typePacked,
597 VertexAttribType typePacked,
/third_party/skia/third_party/externals/angle2/src/libANGLE/
Dformatutils.h353 angle::FormatID GetVertexFormatID(VertexAttribType type,
358 angle::FormatID GetVertexFormatID(const VertexAttribute &attrib, VertexAttribType currentValueType);
359 angle::FormatID GetCurrentValueFormatID(VertexAttribType currentValueType);
515 ANGLE_INLINE ComponentType GetVertexAttributeComponentType(bool pureInteger, VertexAttribType type) in GetVertexAttributeComponentType()
521 case VertexAttribType::Byte: in GetVertexAttributeComponentType()
522 case VertexAttribType::Short: in GetVertexAttributeComponentType()
523 case VertexAttribType::Int: in GetVertexAttributeComponentType()
526 case VertexAttribType::UnsignedByte: in GetVertexAttributeComponentType()
527 case VertexAttribType::UnsignedShort: in GetVertexAttributeComponentType()
528 case VertexAttribType::UnsignedInt: in GetVertexAttributeComponentType()
DVertexAttribute.inc13 : Type(gl::VertexAttribType::Float)
27 Type = gl::VertexAttribType::Float;
36 Type = gl::VertexAttribType::Int;
45 Type = gl::VertexAttribType::UnsignedInt;
DVertexArray.h216 VertexAttribType type,
225 VertexAttribType type,
231 VertexAttribType type,
347 VertexAttribType type,
355 VertexAttribType type,
DContext_gles_1_0_autogen.h24 void colorPointer(GLint size, VertexAttribType typePacked, GLsizei stride, \
73 void normalPointer(VertexAttribType typePacked, GLsizei stride, const void *pointer); \
91 void texCoordPointer(GLint size, VertexAttribType typePacked, GLsizei stride, \
106 void vertexPointer(GLint size, VertexAttribType typePacked, GLsizei stride, \
/third_party/vk-gl-cts/framework/referencerenderer/
DrrVertexAttrib.hpp33 enum VertexAttribType enum
111 VertexAttribType type; //!< Attribute component type.
127 …VertexAttrib (VertexAttribType type_, int size_, int stride_, int instanceDivisor_, const void* po… in VertexAttrib()
/third_party/vk-gl-cts/framework/opengl/simplereference/
DsglrReferenceUtils.hpp38 rr::VertexAttribType mapGLPureIntegerVertexAttributeType (deUint32 type);
39 rr::VertexAttribType mapGLFloatVertexAttributeType (deUint32 type, bool normalizedInteger, int …
/third_party/skia/tests/graphite/
DCommandBufferTest.cpp104 { "position", VertexAttribType::kFloat2, SLType::kFloat2 } in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
142 { "position", VertexAttribType::kFloat2, SLType::kFloat2 }, in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
143 { "dims", VertexAttribType::kFloat2, SLType::kFloat2 }, in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
144 { "color", VertexAttribType::kFloat4, SLType::kFloat4 } in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
Dcapture_gles_1_0_autogen.h69 VertexAttribType typePacked,
249 VertexAttribType typePacked,
324 VertexAttribType typePacked,
380 VertexAttribType typePacked,
399 VertexAttribType typePacked,
528 VertexAttribType typePacked,
545 VertexAttribType typePacked,
576 VertexAttribType typePacked,

1234567