()
| 737 | |
| 738 | |
| 739 | public float getPixelScale() { |
| 740 | if (graphics.pixelDensity == 1) { |
| 741 | return 1; |
| 742 | } |
| 743 | |
| 744 | if (PApplet.platform == PConstants.MACOS) { |
| 745 | return getCurrentPixelScale(); |
| 746 | } |
| 747 | |
| 748 | return 2; |
| 749 | } |
| 750 | |
| 751 | |
| 752 | protected float getCurrentPixelScale() { |
no test coverage detected