mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 22:49:00 +01:00
Merge pull request #3229 from Tilka/broken_info_log
DriverDetails: remove BUG_BROKENINFOLOG leftovers
This commit is contained in:
commit
d3fee2b9bd
@ -353,9 +353,6 @@ GLuint ProgramShaderCache::CompileSingleShader(GLuint type, const char* code)
|
|||||||
GLsizei length = 0;
|
GLsizei length = 0;
|
||||||
glGetShaderiv(result, GL_INFO_LOG_LENGTH, &length);
|
glGetShaderiv(result, GL_INFO_LOG_LENGTH, &length);
|
||||||
|
|
||||||
if (DriverDetails::HasBug(DriverDetails::BUG_BROKENINFOLOG))
|
|
||||||
length = 1024;
|
|
||||||
|
|
||||||
if (compileStatus != GL_TRUE || (length > 1 && DEBUG_GLSL))
|
if (compileStatus != GL_TRUE || (length > 1 && DEBUG_GLSL))
|
||||||
{
|
{
|
||||||
GLsizei charsWritten;
|
GLsizei charsWritten;
|
||||||
|
@ -58,7 +58,6 @@ namespace DriverDetails
|
|||||||
// This'll ensure we know exactly what the issue is.
|
// This'll ensure we know exactly what the issue is.
|
||||||
enum Bug
|
enum Bug
|
||||||
{
|
{
|
||||||
BUG_BROKENINFOLOG,
|
|
||||||
// Bug: UBO buffer offset broken
|
// Bug: UBO buffer offset broken
|
||||||
// Affected devices: all mesa drivers
|
// Affected devices: all mesa drivers
|
||||||
// Started Version: 9.0 (mesa doesn't support ubo before)
|
// Started Version: 9.0 (mesa doesn't support ubo before)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user