소스 검색

gpu: do not convert u8vec4 to integers when set as array buffers, since we

want to normalise them to floats.
legacy
Sam Hocevar sam 12 년 전
부모
커밋
27d22a9778
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      src/gpu/vertexbuffer.cpp

+ 4
- 1
src/gpu/vertexbuffer.cpp 파일 보기

@@ -360,7 +360,10 @@ void VertexDeclaration::SetStream(VertexBuffer *vb, ShaderAttrib attr1,


# if !defined __CELLOS_LV2__
if (type_index <= 12)
if (tlut[type_index].type == GL_FLOAT
|| tlut[type_index].type == GL_DOUBLE
|| tlut[type_index].type == GL_BYTE
|| tlut[type_index].type == GL_UNSIGNED_BYTE)
{
/* Normalize unsigned bytes by default, because it's usually
* some color information. */


불러오는 중...
취소
저장