| 941 | } |
| 942 | |
| 943 | static bool IsFormatRG(dmGraphics::TextureFormat format) |
| 944 | { |
| 945 | switch(format) |
| 946 | { |
| 947 | case dmGraphics::TEXTURE_FORMAT_LUMINANCE_ALPHA: |
| 948 | case dmGraphics::TEXTURE_FORMAT_RG_BC5: |
| 949 | return true; |
| 950 | default: |
| 951 | return false; |
| 952 | } |
| 953 | } |
| 954 | |
| 955 | static bool IsFormatR(dmGraphics::TextureFormat format) |
| 956 | { |
no outgoing calls
no test coverage detected