mirror of
https://github.com/lubosz/overte.git
synced 2025-04-10 17:22:40 +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 {
|
||||
#if defined(USE_GLES)
|
||||
return false;
|
||||
#endif
|
||||
|
||||
if (!_enabled) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue