| #include "precompiled.h" |
| // |
| // Copyright (c) 2013 The ANGLE Project Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| // |
| |
| // VertexBuffer11.cpp: Defines the D3D11 VertexBuffer implementation. |
| |
| #include "libGLESv2/renderer/VertexBuffer11.h" |
| #include "libGLESv2/renderer/BufferStorage.h" |
| |
| #include "libGLESv2/Buffer.h" |
| #include "libGLESv2/renderer/Renderer11.h" |
| #include "libGLESv2/Context.h" |
| |
| #define FLOAT32_ONE_BITS (0x3f800000) |
| #define FLOAT16_ONE_BITS (0x3c00) |
| |
| namespace rx |
| { |
| |
| VertexBuffer11::VertexBuffer11(rx::Renderer11 *const renderer) : mRenderer(renderer) |
| { |
| mBuffer = NULL; |
| mBufferSize = 0; |
| mDynamicUsage = false; |
| } |
| |
| VertexBuffer11::~VertexBuffer11() |
| { |
| if (mBuffer) |
| { |
| mBuffer->Release(); |
| mBuffer = NULL; |
| } |
| } |
| |
| bool VertexBuffer11::initialize(unsigned int size, bool dynamicUsage) |
| { |
| if (mBuffer) |
| { |
| mBuffer->Release(); |
| mBuffer = NULL; |
| } |
| |
| updateSerial(); |
| |
| if (size > 0) |
| { |
| ID3D11Device* dxDevice = mRenderer->getDevice(); |
| |
| D3D11_BUFFER_DESC bufferDesc; |
| bufferDesc.ByteWidth = size; |
| bufferDesc.Usage = D3D11_USAGE_DYNAMIC; |
| bufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; |
| bufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; |
| bufferDesc.MiscFlags = 0; |
| bufferDesc.StructureByteStride = 0; |
| |
| HRESULT result = dxDevice->CreateBuffer(&bufferDesc, NULL, &mBuffer); |
| if (FAILED(result)) |
| { |
| return false; |
| } |
| } |
| |
| mBufferSize = size; |
| mDynamicUsage = dynamicUsage; |
| return true; |
| } |
| |
| VertexBuffer11 *VertexBuffer11::makeVertexBuffer11(VertexBuffer *vetexBuffer) |
| { |
| ASSERT(HAS_DYNAMIC_TYPE(VertexBuffer11*, vetexBuffer)); |
| return static_cast<VertexBuffer11*>(vetexBuffer); |
| } |
| |
| bool VertexBuffer11::storeVertexAttributes(const gl::VertexAttribute &attrib, GLint start, GLsizei count, |
| GLsizei instances, unsigned int offset) |
| { |
| if (mBuffer) |
| { |
| gl::Buffer *buffer = attrib.mBoundBuffer.get(); |
| |
| int inputStride = attrib.stride(); |
| const VertexConverter &converter = getVertexConversion(attrib); |
| |
| ID3D11DeviceContext *dxContext = mRenderer->getDeviceContext(); |
| |
| D3D11_MAPPED_SUBRESOURCE mappedResource; |
| HRESULT result = dxContext->Map(mBuffer, 0, D3D11_MAP_WRITE_NO_OVERWRITE, 0, &mappedResource); |
| if (FAILED(result)) |
| { |
| ERR("Vertex buffer map failed with error 0x%08x", result); |
| return false; |
| } |
| |
| char* output = reinterpret_cast<char*>(mappedResource.pData) + offset; |
| |
| const char *input = NULL; |
| if (attrib.mArrayEnabled) |
| { |
| if (buffer) |
| { |
| BufferStorage *storage = buffer->getStorage(); |
| input = static_cast<const char*>(storage->getData()) + static_cast<int>(attrib.mOffset); |
| } |
| else |
| { |
| input = static_cast<const char*>(attrib.mPointer); |
| } |
| } |
| else |
| { |
| input = reinterpret_cast<const char*>(attrib.mCurrentValue.FloatValues); |
| } |
| |
| if (instances == 0 || attrib.mDivisor == 0) |
| { |
| input += inputStride * start; |
| } |
| |
| converter.conversionFunc(input, inputStride, count, output); |
| |
| dxContext->Unmap(mBuffer, 0); |
| |
| return true; |
| } |
| else |
| { |
| ERR("Vertex buffer not initialized."); |
| return false; |
| } |
| } |
| |
| unsigned int VertexBuffer11::getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, |
| GLsizei instances) const |
| { |
| unsigned int elementSize = getVertexConversion(attrib).outputElementSize; |
| |
| if (attrib.mArrayEnabled) |
| { |
| if (instances == 0 || attrib.mDivisor == 0) |
| { |
| return elementSize * count; |
| } |
| else |
| { |
| return elementSize * ((instances + attrib.mDivisor - 1) / attrib.mDivisor); |
| } |
| } |
| else |
| { |
| return elementSize * 4; |
| } |
| } |
| |
| bool VertexBuffer11::requiresConversion(const gl::VertexAttribute &attrib) const |
| { |
| return !getVertexConversion(attrib).identity; |
| } |
| |
| unsigned int VertexBuffer11::getBufferSize() const |
| { |
| return mBufferSize; |
| } |
| |
| bool VertexBuffer11::setBufferSize(unsigned int size) |
| { |
| if (size > mBufferSize) |
| { |
| return initialize(size, mDynamicUsage); |
| } |
| else |
| { |
| return true; |
| } |
| } |
| |
| bool VertexBuffer11::discard() |
| { |
| if (mBuffer) |
| { |
| ID3D11DeviceContext *dxContext = mRenderer->getDeviceContext(); |
| |
| D3D11_MAPPED_SUBRESOURCE mappedResource; |
| HRESULT result = dxContext->Map(mBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource); |
| if (FAILED(result)) |
| { |
| ERR("Vertex buffer map failed with error 0x%08x", result); |
| return false; |
| } |
| |
| dxContext->Unmap(mBuffer, 0); |
| |
| return true; |
| } |
| else |
| { |
| ERR("Vertex buffer not initialized."); |
| return false; |
| } |
| } |
| |
| unsigned int VertexBuffer11::getVertexSize(const gl::VertexAttribute &attrib) const |
| { |
| return getVertexConversion(attrib).outputElementSize; |
| } |
| |
| DXGI_FORMAT VertexBuffer11::getDXGIFormat(const gl::VertexAttribute &attrib) const |
| { |
| return getVertexConversion(attrib).dxgiFormat; |
| } |
| |
| ID3D11Buffer *VertexBuffer11::getBuffer() const |
| { |
| return mBuffer; |
| } |
| |
| template <typename T, unsigned int componentCount, bool widen, unsigned int defaultValueBits> |
| static void copyVertexData(const void *input, unsigned int stride, unsigned int count, void *output) |
| { |
| const unsigned int attribSize = sizeof(T) * componentCount; |
| |
| const unsigned int defaultBits = defaultValueBits; |
| const T defaultValue = *reinterpret_cast<const T*>(&defaultBits); |
| |
| if (attribSize == stride && !widen) |
| { |
| memcpy(output, input, count * attribSize); |
| } |
| else |
| { |
| unsigned int outputStride = widen ? 4 : componentCount; |
| |
| for (unsigned int i = 0; i < count; i++) |
| { |
| const T *offsetInput = reinterpret_cast<const T*>(reinterpret_cast<const char*>(input) + i * stride); |
| T *offsetOutput = reinterpret_cast<T*>(output) + i * outputStride; |
| |
| for (unsigned int j = 0; j < componentCount; j++) |
| { |
| offsetOutput[j] = offsetInput[j]; |
| } |
| |
| if (widen) |
| { |
| offsetOutput[3] = defaultValue; |
| } |
| } |
| } |
| } |
| |
| template <unsigned int componentCount> |
| static void copyFixedVertexData(const void* input, unsigned int stride, unsigned int count, void* output) |
| { |
| static const float divisor = 1.0f / (1 << 16); |
| |
| for (unsigned int i = 0; i < count; i++) |
| { |
| const GLfixed* offsetInput = reinterpret_cast<const GLfixed*>(reinterpret_cast<const char*>(input) + stride * i); |
| float* offsetOutput = reinterpret_cast<float*>(output) + i * componentCount; |
| |
| for (unsigned int j = 0; j < componentCount; j++) |
| { |
| offsetOutput[j] = static_cast<float>(offsetInput[j]) * divisor; |
| } |
| } |
| } |
| |
| template <typename T, unsigned int componentCount, bool normalized> |
| static void copyToFloatVertexData(const void* input, unsigned int stride, unsigned int count, void* output) |
| { |
| typedef std::numeric_limits<T> NL; |
| |
| for (unsigned int i = 0; i < count; i++) |
| { |
| const T *offsetInput = reinterpret_cast<const T*>(reinterpret_cast<const char*>(input) + stride * i); |
| float *offsetOutput = reinterpret_cast<float*>(output) + i * componentCount; |
| |
| for (unsigned int j = 0; j < componentCount; j++) |
| { |
| if (normalized) |
| { |
| if (NL::is_signed) |
| { |
| const float divisor = 1.0f / (2 * static_cast<float>(NL::max()) + 1); |
| offsetOutput[j] = (2 * static_cast<float>(offsetInput[j]) + 1) * divisor; |
| } |
| else |
| { |
| offsetOutput[j] = static_cast<float>(offsetInput[j]) / NL::max(); |
| } |
| } |
| else |
| { |
| offsetOutput[j] = static_cast<float>(offsetInput[j]); |
| } |
| } |
| } |
| } |
| |
| const VertexBuffer11::VertexConverter VertexBuffer11::mFloatVertexTranslations[NUM_GL_FLOAT_VERTEX_ATTRIB_TYPES][2][4] = |
| { |
| { // GL_BYTE |
| { // unnormalized |
| { ©ToFloatVertexData<GLbyte, 1, false>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©ToFloatVertexData<GLbyte, 2, false>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©ToFloatVertexData<GLbyte, 3, false>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©ToFloatVertexData<GLbyte, 4, false>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| { // normalized |
| { ©VertexData<GLbyte, 1, false, INT8_MAX>, true, DXGI_FORMAT_R8_SNORM, 1 }, |
| { ©VertexData<GLbyte, 2, false, INT8_MAX>, true, DXGI_FORMAT_R8G8_SNORM, 2 }, |
| { ©VertexData<GLbyte, 3, true, INT8_MAX>, false, DXGI_FORMAT_R8G8B8A8_SNORM, 4 }, |
| { ©VertexData<GLbyte, 4, false, INT8_MAX>, true, DXGI_FORMAT_R8G8B8A8_SNORM, 4 }, |
| }, |
| }, |
| { // GL_UNSIGNED_BYTE |
| { // unnormalized |
| { ©ToFloatVertexData<GLubyte, 1, false>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©ToFloatVertexData<GLubyte, 2, false>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©ToFloatVertexData<GLubyte, 3, false>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©ToFloatVertexData<GLubyte, 4, false>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| { // normalized |
| { ©VertexData<GLubyte, 1, false, UINT8_MAX>, true, DXGI_FORMAT_R8_UNORM, 1 }, |
| { ©VertexData<GLubyte, 2, false, UINT8_MAX>, true, DXGI_FORMAT_R8G8_UNORM, 2 }, |
| { ©VertexData<GLubyte, 3, true, UINT8_MAX>, false, DXGI_FORMAT_R8G8B8A8_UNORM, 4 }, |
| { ©VertexData<GLubyte, 4, false, UINT8_MAX>, true, DXGI_FORMAT_R8G8B8A8_UNORM, 4 }, |
| }, |
| }, |
| { // GL_SHORT |
| { // unnormalized |
| { ©ToFloatVertexData<GLshort, 1, false>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©ToFloatVertexData<GLshort, 2, false>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©ToFloatVertexData<GLshort, 3, false>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©ToFloatVertexData<GLshort, 4, false>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| { // normalized |
| { ©VertexData<GLshort, 1, false, INT16_MAX>, true, DXGI_FORMAT_R16_SNORM, 2 }, |
| { ©VertexData<GLshort, 2, false, INT16_MAX>, true, DXGI_FORMAT_R16G16_SNORM, 4 }, |
| { ©VertexData<GLshort, 3, true, INT16_MAX>, false, DXGI_FORMAT_R16G16B16A16_SNORM, 8 }, |
| { ©VertexData<GLshort, 4, false, INT16_MAX>, true, DXGI_FORMAT_R16G16B16A16_SNORM, 8 }, |
| }, |
| }, |
| { // GL_UNSIGNED_SHORT |
| { // unnormalized |
| { ©ToFloatVertexData<GLushort, 1, false>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©ToFloatVertexData<GLushort, 2, false>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©ToFloatVertexData<GLushort, 3, false>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©ToFloatVertexData<GLushort, 4, false>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| { // normalized |
| { ©VertexData<GLushort, 1, false, UINT16_MAX>, true, DXGI_FORMAT_R16_UNORM, 2 }, |
| { ©VertexData<GLushort, 2, false, UINT16_MAX>, true, DXGI_FORMAT_R16G16_UNORM, 4 }, |
| { ©VertexData<GLushort, 3, true, UINT16_MAX>, false, DXGI_FORMAT_R16G16B16A16_UNORM, 8 }, |
| { ©VertexData<GLushort, 4, false, UINT16_MAX>, true, DXGI_FORMAT_R16G16B16A16_UNORM, 8 }, |
| }, |
| }, |
| { // GL_INT |
| { // unnormalized |
| { ©ToFloatVertexData<GLint, 1, false>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©ToFloatVertexData<GLint, 2, false>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©ToFloatVertexData<GLint, 3, false>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©ToFloatVertexData<GLint, 4, false>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| { // normalized |
| { ©ToFloatVertexData<GLint, 1, true>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©ToFloatVertexData<GLint, 2, true>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©ToFloatVertexData<GLint, 3, true>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©ToFloatVertexData<GLint, 4, true>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| }, |
| { // GL_UNSIGNED_INT |
| { // unnormalized |
| { ©ToFloatVertexData<GLuint, 1, false>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©ToFloatVertexData<GLuint, 2, false>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©ToFloatVertexData<GLuint, 3, false>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©ToFloatVertexData<GLuint, 4, false>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| { // normalized |
| { ©ToFloatVertexData<GLuint, 1, true>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©ToFloatVertexData<GLuint, 2, true>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©ToFloatVertexData<GLuint, 3, true>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©ToFloatVertexData<GLuint, 4, true>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| }, |
| { // GL_FIXED |
| { // unnormalized |
| { ©FixedVertexData<1>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©FixedVertexData<2>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©FixedVertexData<3>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©FixedVertexData<4>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| { // normalized |
| { ©FixedVertexData<1>, false, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©FixedVertexData<2>, false, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©FixedVertexData<3>, false, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©FixedVertexData<4>, false, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| }, |
| { // GL_HALF_FLOAT |
| { // unnormalized |
| { ©VertexData<GLhalf, 1, false, FLOAT16_ONE_BITS>, true, DXGI_FORMAT_R16_FLOAT, 2 }, |
| { ©VertexData<GLhalf, 2, false, FLOAT16_ONE_BITS>, true, DXGI_FORMAT_R16G16_FLOAT, 4 }, |
| { ©VertexData<GLhalf, 3, true, FLOAT16_ONE_BITS>, false, DXGI_FORMAT_R16G16B16A16_FLOAT, 8 }, |
| { ©VertexData<GLhalf, 4, false, FLOAT16_ONE_BITS>, true, DXGI_FORMAT_R16G16B16A16_FLOAT, 8 }, |
| }, |
| { // normalized |
| { ©VertexData<GLhalf, 1, false, FLOAT16_ONE_BITS>, true, DXGI_FORMAT_R16_FLOAT, 2 }, |
| { ©VertexData<GLhalf, 2, false, FLOAT16_ONE_BITS>, true, DXGI_FORMAT_R16G16_FLOAT, 4 }, |
| { ©VertexData<GLhalf, 3, true, FLOAT16_ONE_BITS>, false, DXGI_FORMAT_R16G16B16A16_FLOAT, 8 }, |
| { ©VertexData<GLhalf, 4, false, FLOAT16_ONE_BITS>, true, DXGI_FORMAT_R16G16B16A16_FLOAT, 8 }, |
| }, |
| }, |
| { // GL_FLOAT |
| { // unnormalized |
| { ©VertexData<GLfloat, 1, false, FLOAT32_ONE_BITS>, true, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©VertexData<GLfloat, 2, false, FLOAT32_ONE_BITS>, true, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©VertexData<GLfloat, 3, false, FLOAT32_ONE_BITS>, true, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©VertexData<GLfloat, 4, false, FLOAT32_ONE_BITS>, true, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| { // normalized |
| { ©VertexData<GLfloat, 1, false, FLOAT32_ONE_BITS>, true, DXGI_FORMAT_R32_FLOAT, 4 }, |
| { ©VertexData<GLfloat, 2, false, FLOAT32_ONE_BITS>, true, DXGI_FORMAT_R32G32_FLOAT, 8 }, |
| { ©VertexData<GLfloat, 3, false, FLOAT32_ONE_BITS>, true, DXGI_FORMAT_R32G32B32_FLOAT, 12 }, |
| { ©VertexData<GLfloat, 4, false, FLOAT32_ONE_BITS>, true, DXGI_FORMAT_R32G32B32A32_FLOAT, 16 }, |
| }, |
| }, |
| }; |
| |
| const VertexBuffer11::VertexConverter VertexBuffer11::mIntegerVertexTranslations[NUM_GL_INTEGER_VERTEX_ATTRIB_TYPES][4] = |
| { |
| { // GL_BYTE |
| { ©VertexData<GLbyte, 1, false, 1>, true, DXGI_FORMAT_R8_SINT, 1 }, |
| { ©VertexData<GLbyte, 2, false, 1>, true, DXGI_FORMAT_R8G8_SINT, 2 }, |
| { ©VertexData<GLbyte, 3, true, 1>, false, DXGI_FORMAT_R8G8B8A8_SINT, 4 }, |
| { ©VertexData<GLbyte, 4, false, 1>, true, DXGI_FORMAT_R8G8B8A8_SINT, 4 }, |
| }, |
| { // GL_UNSIGNED_BYTE |
| { ©VertexData<GLubyte, 1, false, 1>, true, DXGI_FORMAT_R8_UINT, 1 }, |
| { ©VertexData<GLubyte, 2, false, 1>, true, DXGI_FORMAT_R8G8_UINT, 2 }, |
| { ©VertexData<GLubyte, 3, true, 1>, false, DXGI_FORMAT_R8G8B8A8_UINT, 4 }, |
| { ©VertexData<GLubyte, 4, false, 1>, true, DXGI_FORMAT_R8G8B8A8_UINT, 4 }, |
| }, |
| { // GL_SHORT |
| { ©VertexData<GLshort, 1, false, 1>, true, DXGI_FORMAT_R16_SINT, 2 }, |
| { ©VertexData<GLshort, 2, false, 1>, true, DXGI_FORMAT_R16G16_SINT, 4 }, |
| { ©VertexData<GLshort, 3, true, 1>, false, DXGI_FORMAT_R16G16B16A16_SINT, 8 }, |
| { ©VertexData<GLshort, 4, false, 1>, true, DXGI_FORMAT_R16G16B16A16_SINT, 8 }, |
| }, |
| { // GL_UNSIGNED_SHORT |
| { ©VertexData<GLushort, 1, false, 1>, true, DXGI_FORMAT_R16_UINT, 2 }, |
| { ©VertexData<GLushort, 2, false, 1>, true, DXGI_FORMAT_R16G16_UINT, 4 }, |
| { ©VertexData<GLushort, 3, true, 1>, false, DXGI_FORMAT_R16G16B16A16_UINT, 8 }, |
| { ©VertexData<GLushort, 4, false, 1>, true, DXGI_FORMAT_R16G16B16A16_UINT, 8 }, |
| }, |
| { // GL_INT |
| { ©VertexData<GLint, 1, false, 1>, true, DXGI_FORMAT_R32_SINT, 4 }, |
| { ©VertexData<GLint, 2, false, 1>, true, DXGI_FORMAT_R32G32_SINT, 8 }, |
| { ©VertexData<GLint, 3, false, 1>, true, DXGI_FORMAT_R32G32B32_SINT, 12 }, |
| { ©VertexData<GLint, 4, false, 1>, true, DXGI_FORMAT_R32G32B32A32_SINT, 16 }, |
| }, |
| { // GL_UNSIGNED_INT |
| { ©VertexData<GLuint, 1, false, 1>, true, DXGI_FORMAT_R32_UINT, 4 }, |
| { ©VertexData<GLuint, 2, false, 1>, true, DXGI_FORMAT_R32G32_UINT, 8 }, |
| { ©VertexData<GLuint, 3, false, 1>, true, DXGI_FORMAT_R32G32B32_UINT, 12 }, |
| { ©VertexData<GLuint, 4, false, 1>, true, DXGI_FORMAT_R32G32B32A32_UINT, 16 }, |
| }, |
| }; |
| |
| const VertexBuffer11::VertexConverter &VertexBuffer11::getVertexConversion(const gl::VertexAttribute &attribute) |
| { |
| GLenum type = attribute.mArrayEnabled ? attribute.mType : attribute.mCurrentValue.Type; |
| if (attribute.mPureInteger) |
| { |
| unsigned int typeIndex = 0; |
| switch (type) |
| { |
| case GL_BYTE: typeIndex = 0; break; |
| case GL_UNSIGNED_BYTE: typeIndex = 1; break; |
| case GL_SHORT: typeIndex = 2; break; |
| case GL_UNSIGNED_SHORT: typeIndex = 3; break; |
| case GL_INT: typeIndex = 4; break; |
| case GL_UNSIGNED_INT: typeIndex = 5; break; |
| default: UNREACHABLE(); break; |
| } |
| |
| return mIntegerVertexTranslations[typeIndex][attribute.mSize - 1]; |
| } |
| else |
| { |
| unsigned int typeIndex = 0; |
| switch (type) |
| { |
| case GL_BYTE: typeIndex = 0; break; |
| case GL_UNSIGNED_BYTE: typeIndex = 1; break; |
| case GL_SHORT: typeIndex = 2; break; |
| case GL_UNSIGNED_SHORT: typeIndex = 3; break; |
| case GL_INT: typeIndex = 4; break; |
| case GL_UNSIGNED_INT: typeIndex = 5; break; |
| case GL_FIXED: typeIndex = 6; break; |
| case GL_HALF_FLOAT: typeIndex = 7; break; |
| case GL_FLOAT: typeIndex = 8; break; |
| default: UNREACHABLE(); break; |
| } |
| |
| return mFloatVertexTranslations[typeIndex][attribute.mNormalized ? 1 : 0][attribute.mSize - 1]; |
| } |
| } |
| |
| } |