* @brief Get the effective dither pattern index */
| 355 | * @brief Get the effective dither pattern index |
| 356 | */ |
| 357 | unsigned int eff_dither_pattern (bool real) const |
| 358 | { |
| 359 | if (! has_dither_pattern (real)) { |
| 360 | return 1; // empty fill pattern |
| 361 | } else { |
| 362 | return (unsigned int) dither_pattern (real); |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | /** |
| 367 | * @brief Get the dither pattern index |
nothing calls this directly
no test coverage detected