MCPcopy Create free account
hub / github.com/chrxh/alien / InputIntColorMatrix

Method InputIntColorMatrix

source/Gui/AlienImGui.cpp:323–334  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

321}
322
323void 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
336void AlienImGui::InputFloatColorMatrix(InputFloatColorMatrixParameters const& parameters, float (&value)[MAX_COLORS][MAX_COLORS], bool* enabled)
337{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected