mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 07:18:17 +02:00
r600: workaround 3 comp GL_SHORT vertex attribute format on r700
guess it's a hw errata?
This commit is contained in:
parent
84a5f27b9b
commit
51c438feb7
1 changed files with 3 additions and 1 deletions
|
|
@ -293,7 +293,9 @@ GLuint GetSurfaceFormat(GLenum eType, GLuint nChannels, GLuint * pClient_size)
|
|||
case 2:
|
||||
format = FMT_16_16; break;
|
||||
case 3:
|
||||
format = FMT_16_16_16; break;
|
||||
/* 3 comp GL_SHORT vertex format doesnt work on r700
|
||||
4 somehow works, test - sauerbraten */
|
||||
format = FMT_16_16_16_16; break;
|
||||
case 4:
|
||||
format = FMT_16_16_16_16; break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue