MCPcopy Index your code
hub / github.com/SpaiR/imgui-java / intToColor

Method intToColor

imgui-binding/src/generated/java/imgui/ImColor.java:77–80  ·  view source on GitHub ↗

@deprecated use #rgb(int, int, int)

(final int r, final int g, final int b, final int a)

Source from the content-addressed store, hash-verified

75 * @deprecated use {@link #rgb(int, int, int)}
76 */
77 @Deprecated
78 public static int intToColor(final int r, final int g, final int b, final int a) {
79 return a << 24 | b << 16 | g << 8 | r;
80 }
81
82 /**
83 * @deprecated use {@link #rgba(int, int, int, int)}

Callers 5

rgbaMethod · 0.95
rgbMethod · 0.95
floatToColorMethod · 0.95
rgbToColorMethod · 0.95
rgbaToColorMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected