()
| 408 | } |
| 409 | |
| 410 | public static int getMipmapType() { |
| 411 | switch (gameSettings.ofMipmapType) { |
| 412 | case 0: |
| 413 | return 9986; |
| 414 | |
| 415 | case 1: |
| 416 | return 9986; |
| 417 | |
| 418 | case 2: |
| 419 | if (isMultiTexture()) { |
| 420 | return 9985; |
| 421 | } |
| 422 | |
| 423 | return 9986; |
| 424 | |
| 425 | case 3: |
| 426 | if (isMultiTexture()) { |
| 427 | return 9987; |
| 428 | } |
| 429 | |
| 430 | return 9986; |
| 431 | |
| 432 | default: |
| 433 | return 9986; |
| 434 | } |
| 435 | } |
| 436 | |
| 437 | public static boolean isUseAlphaFunc() { |
| 438 | float f = getAlphaFuncLevel(); |
no test coverage detected