Revision a9be24d8
Added by Leszek Koltunski over 4 years ago
| src/main/java/org/distorted/library/main/DistortedLibrary.java | ||
|---|---|---|
| 938 | 938 |
} |
| 939 | 939 |
else if( mVendor.contains("Qualcomm"))
|
| 940 | 940 |
{
|
| 941 |
if( mVersion.contains("V@331.0") )
|
|
| 941 |
if( mVersion.contains("V@331.0") ||
|
|
| 942 |
mVersion.contains("V@415.0") ||
|
|
| 943 |
mRenderer.contains("308") ||
|
|
| 944 |
mRenderer.contains("306") )
|
|
| 942 | 945 |
{
|
| 943 |
Log.e("DISTORTED", "You are running this on an Adreno 3xx driver version 331.\nStrange shit might happen.");
|
|
| 946 |
Log.e("DISTORTED", "You are running this on an Adreno 30x.\nStrange shit might happen.");
|
|
| 944 | 947 |
mBuggyUBOs = true; |
| 945 | 948 |
} |
| 946 | 949 |
} |
Also available in: Unified diff
Improve the 'buggy UBOs' detection.