| 321 | } |
| 322 | |
| 323 | void AlienImGui::InputIntColorMatrix(InputIntColorMatrixParameters const& parameters, int (&value)[MAX_COLORS][MAX_COLORS]) |
| 324 | { |
| 325 | BasicInputColorMatrixParameters<int> basicParameters; |
| 326 | basicParameters._name = parameters._name; |
| 327 | basicParameters._min = parameters._min; |
| 328 | basicParameters._max = parameters._max; |
| 329 | basicParameters._logarithmic = parameters._logarithmic; |
| 330 | basicParameters._textWidth = parameters._textWidth; |
| 331 | basicParameters._defaultValue = parameters._defaultValue; |
| 332 | basicParameters._tooltip = parameters._tooltip; |
| 333 | BasicInputColorMatrix(basicParameters, value); |
| 334 | } |
| 335 | |
| 336 | void AlienImGui::InputFloatColorMatrix(InputFloatColorMatrixParameters const& parameters, float (&value)[MAX_COLORS][MAX_COLORS], bool* enabled) |
| 337 | { |
nothing calls this directly
no outgoing calls
no test coverage detected