mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
ported from mozilla: Bug 1446548 - Treat all GLSL versions >=450 as 450. r=kvark, a=RyanVM (43f0d1060e)
This commit is contained in:
parent
d6590573ed
commit
f508d00178
1 changed files with 7 additions and 2 deletions
|
|
@ -9,6 +9,7 @@
|
|||
#include "angle/ShaderLang.h"
|
||||
#include "gfxPrefs.h"
|
||||
#include "GLContext.h"
|
||||
#include "mozilla/gfx/Logging.h"
|
||||
#include "mozilla/Preferences.h"
|
||||
#include "MurmurHash3.h"
|
||||
#include "nsPrintfCString.h"
|
||||
|
|
@ -135,9 +136,13 @@ ShaderOutput(gl::GLContext* gl)
|
|||
case 420: return SH_GLSL_420_CORE_OUTPUT;
|
||||
case 430: return SH_GLSL_430_CORE_OUTPUT;
|
||||
case 440: return SH_GLSL_440_CORE_OUTPUT;
|
||||
case 450: return SH_GLSL_450_CORE_OUTPUT;
|
||||
default:
|
||||
MOZ_ASSERT(false, "GFX: Unexpected GLSL version.");
|
||||
if (version >= 450) {
|
||||
// "OpenGL 4.6 is also guaranteed to support all previous versions of the
|
||||
// OpenGL Shading Language back to version 1.10."
|
||||
return SH_GLSL_450_CORE_OUTPUT;
|
||||
}
|
||||
gfxCriticalNote << "Unexpected GLSL version: " << version;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue