mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 16:14:35 +02:00
Disable procedural surfaces on GLES
This commit is contained in:
parent
5049bac6ff
commit
4eb77b1970
1 changed files with 4 additions and 0 deletions
|
@ -187,6 +187,10 @@ void Procedural::setProceduralData(const ProceduralData& proceduralData) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Procedural::isReady() const {
|
bool Procedural::isReady() const {
|
||||||
|
#if defined(USE_GLES)
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (!_enabled) {
|
if (!_enabled) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue