HomeSort by relevance Sort by last modified time
    Searched defs:VertexAttribute (Results 1 - 5 of 5) sorted by null

  /external/deqp/framework/opengl/simplereference/
sglrShaderProgram.hpp 57 struct VertexAttribute
59 VertexAttribute (const std::string& name_, rr::GenericVecType type_) : name(name_), type(type_) { }
149 ShaderProgramDeclaration& operator<< (const VertexAttribute&);
171 std::vector<VertexAttribute> m_vertexAttributes;
  /external/swiftshader/src/OpenGL/libGL/
Context.h 368 class VertexAttribute
371 VertexAttribute() : mType(GL_FLOAT), mSize(0), mNormalized(false), mStride(0), mPointer(nullptr), mArrayEnabled(false)
416 typedef VertexAttribute VertexAttributeArray[MAX_VERTEX_ATTRIBS];
496 VertexAttribute vertexAttribute[MAX_VERTEX_ATTRIBS];
583 const VertexAttribute &getVertexAttribState(unsigned int attribNum);
821 VertexAttribute clientAttribute[MAX_VERTEX_ATTRIBS];
  /external/swiftshader/src/OpenGL/libGLES_CM/
Context.h 146 class VertexAttribute
149 VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mStride(0), mPointer(nullptr), mArrayEnabled(false)
194 typedef VertexAttribute VertexAttributeArray[MAX_VERTEX_ATTRIBS];
284 VertexAttribute vertexAttribute[MAX_VERTEX_ATTRIBS];
428 const VertexAttribute &getVertexAttribState(unsigned int attribNum);
  /external/swiftshader/src/OpenGL/libGLESv2/
Context.h 193 class VertexAttribute
196 VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mPureInteger(false), mStride(0), mDivisor(0), mPointer(nullptr), mArrayEnabled(false)
330 typedef VertexAttribute VertexAttributeArray[MAX_VERTEX_ATTRIBS];
422 VertexAttribute vertexAttribute[MAX_VERTEX_ATTRIBS];
522 const VertexAttribute &getVertexAttribState(unsigned int attribNum) const;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ImageShader.java 56 private HashMap<String, VertexAttribute> mAttributes = new HashMap<String, VertexAttribute>();
77 private static class VertexAttribute {
90 public VertexAttribute(String name, int index) {
401 VertexAttribute attr = getProgramAttribute(attributeName, true);
407 VertexAttribute attr = getProgramAttribute(attributeName, true);
632 for (VertexAttribute attr : mAttributes.values()) {
642 VertexAttribute attr = getProgramAttribute(texCoordAttributeName(), false);
654 VertexAttribute attr = getProgramAttribute(positionAttributeName(), false);
759 private VertexAttribute getProgramAttribute(String name, boolean required)
    [all...]

Completed in 231 milliseconds