mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 14:53:01 +02:00
Merge pull request #5928 from jherico/homer
Disabling vertex attrib format due to crashes
This commit is contained in:
commit
dccf121cd3
1 changed files with 2 additions and 1 deletions
|
@ -88,7 +88,8 @@ void GLBackend::syncInputStateCache() {
|
||||||
|
|
||||||
// Core 41 doesn't expose the features to really separate the vertex format from the vertex buffers binding
|
// Core 41 doesn't expose the features to really separate the vertex format from the vertex buffers binding
|
||||||
// Core 43 does :)
|
// Core 43 does :)
|
||||||
#if (GPU_INPUT_PROFILE == GPU_CORE_41)
|
// FIXME crashing problem with glVertexBindingDivisor / glVertexAttribFormat
|
||||||
|
#if 1 || (GPU_INPUT_PROFILE == GPU_CORE_41)
|
||||||
#define NO_SUPPORT_VERTEX_ATTRIB_FORMAT
|
#define NO_SUPPORT_VERTEX_ATTRIB_FORMAT
|
||||||
#else
|
#else
|
||||||
#define SUPPORT_VERTEX_ATTRIB_FORMAT
|
#define SUPPORT_VERTEX_ATTRIB_FORMAT
|
||||||
|
|
Loading…
Reference in a new issue