Home
last modified time | relevance | path

Searched refs:VertexAttribute (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
DVertexBuffer.h17 class VertexAttribute; variable
32 … virtual bool storeVertexAttributes(const gl::VertexAttribute &attrib, GLint start, GLsizei count,
36 … virtual bool getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances,
39 virtual bool requiresConversion(const gl::VertexAttribute &attrib) const = 0;
63 bool reserveVertexSpace(const gl::VertexAttribute &attribute, GLsizei count, GLsizei instances);
70 …virtual bool storeVertexAttributes(const gl::VertexAttribute &attrib, GLint start, GLsizei count, …
114 …bool storeVertexAttributes(const gl::VertexAttribute &attrib, GLint start, GLsizei count, GLsizei …
117 bool lookupAttribute(const gl::VertexAttribute &attribute, unsigned int* outStreamOffset);
DVertexBuffer9.h28 …virtual bool storeVertexAttributes(const gl::VertexAttribute &attrib, GLint start, GLsizei count, …
32 …virtual bool getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances,…
34 virtual bool requiresConversion(const gl::VertexAttribute &attrib) const;
36 unsigned int getVertexSize(const gl::VertexAttribute &attrib) const;
37 D3DDECLTYPE getDeclType(const gl::VertexAttribute &attrib) const;
83 static const FormatConverter &formatConverter(const gl::VertexAttribute &attribute);
85 … static bool spaceRequired(const gl::VertexAttribute &attrib, std::size_t count, GLsizei instances,
DVertexBuffer11.h28 …virtual bool storeVertexAttributes(const gl::VertexAttribute &attrib, GLint start, GLsizei count, …
32 … virtual bool getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances,
35 virtual bool requiresConversion(const gl::VertexAttribute &attrib) const;
41 unsigned int getVertexSize(const gl::VertexAttribute &attrib) const;
42 DXGI_FORMAT getDXGIFormat(const gl::VertexAttribute &attrib) const;
69 static const VertexConverter &getVertexConversion(const gl::VertexAttribute &attribute);
DVertexDataManager.h18 class VertexAttribute; variable
33 const gl::VertexAttribute *attribute;
49 …GLenum prepareVertexData(const gl::VertexAttribute attribs[], gl::ProgramBinary *programBinary, GL…
DVertexBuffer.cpp90 bool VertexBufferInterface::storeVertexAttributes(const gl::VertexAttribute &attrib, GLint start, … in storeVertexAttributes()
153 bool VertexBufferInterface::reserveVertexSpace(const gl::VertexAttribute &attribute, GLsizei count,… in reserveVertexSpace()
227 bool StaticVertexBufferInterface::lookupAttribute(const gl::VertexAttribute &attribute, unsigned in… in lookupAttribute()
269 bool StaticVertexBufferInterface::storeVertexAttributes(const gl::VertexAttribute &attrib, GLint st… in storeVertexAttributes()
DVertexBuffer11.cpp76 bool VertexBuffer11::storeVertexAttributes(const gl::VertexAttribute &attrib, GLint start, GLsizei … in storeVertexAttributes()
155 bool VertexBuffer11::getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, in getSpaceRequired()
192 bool VertexBuffer11::requiresConversion(const gl::VertexAttribute &attrib) const in requiresConversion()
239 unsigned int VertexBuffer11::getVertexSize(const gl::VertexAttribute &attrib) const in getVertexSize()
244 DXGI_FORMAT VertexBuffer11::getDXGIFormat(const gl::VertexAttribute &attrib) const in getDXGIFormat()
423 …uffer11::VertexConverter &VertexBuffer11::getVertexConversion(const gl::VertexAttribute &attribute) in getVertexConversion()
DVertexBuffer9.cpp84 bool VertexBuffer9::storeVertexAttributes(const gl::VertexAttribute &attrib, GLint start, GLsizei c… in storeVertexAttributes()
177 bool VertexBuffer9::getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei inst… in getSpaceRequired()
183 bool VertexBuffer9::requiresConversion(const gl::VertexAttribute &attrib) const in requiresConversion()
188 unsigned int VertexBuffer9::getVertexSize(const gl::VertexAttribute &attrib) const in getVertexSize()
194 D3DDECLTYPE VertexBuffer9::getDeclType(const gl::VertexAttribute &attrib) const in getDeclType()
476 const VertexBuffer9::FormatConverter &VertexBuffer9::formatConverter(const gl::VertexAttribute &att… in formatConverter()
481 bool VertexBuffer9::spaceRequired(const gl::VertexAttribute &attrib, std::size_t count, GLsizei ins… in spaceRequired()
DVertexDataManager.cpp29 static int elementsInBuffer(const gl::VertexAttribute &attribute, unsigned int size) in elementsInBuffer()
41 static int StreamingBufferElementCount(const gl::VertexAttribute &attribute, int vertexDrawCount, i… in StreamingBufferElementCount()
85 static bool directStoragePossible(VertexBufferInterface* vb, const gl::VertexAttribute& attrib) in directStoragePossible()
95 GLenum VertexDataManager::prepareVertexData(const gl::VertexAttribute attribs[], gl::ProgramBinary … in prepareVertexData()
DRenderer.h42 class VertexAttribute; variable
135 …virtual GLenum applyVertexBuffer(gl::ProgramBinary *programBinary, gl::VertexAttribute vertexAttri…
DRenderer9.h88 …virtual GLenum applyVertexBuffer(gl::ProgramBinary *programBinary, gl::VertexAttribute vertexAttri…
DRenderer11.h74 …virtual GLenum applyVertexBuffer(gl::ProgramBinary *programBinary, gl::VertexAttribute vertexAttri…
DRenderer9.cpp1379 GLenum Renderer9::applyVertexBuffer(gl::ProgramBinary *programBinary, gl::VertexAttribute vertexAtt… in applyVertexBuffer()
DRenderer11.cpp1041 GLenum Renderer11::applyVertexBuffer(gl::ProgramBinary *programBinary, gl::VertexAttribute vertexAt… in applyVertexBuffer()
/external/chromium_org/third_party/angle/src/libGLESv2/
DContext.h73 class VertexAttribute
76VertexAttribute() : mType(GL_FLOAT), mSize(0), mNormalized(false), mStride(0), mPointer(NULL), mAr… in VertexAttribute() function
160 VertexAttribute vertexAttribute[MAX_VERTEX_ATTRIBS];
261 const VertexAttribute &getVertexAttribState(unsigned int attribNum);
DlibGLESv2.cpp4219 const gl::VertexAttribute &attribState = context->getVertexAttribState(index); in glGetVertexAttribfv()
4275 const gl::VertexAttribute &attribState = context->getVertexAttribState(index); in glGetVertexAttribiv()
DContext.cpp637 const VertexAttribute &Context::getVertexAttribState(unsigned int attribNum) in getVertexAttribState()