mirror of
https://github.com/raylib-zig/raylib-zig.git
synced 2026-02-14 05:18:36 +00:00
Second GenImageGradientV -> GenImageGradientH
This commit is contained in:
parent
4bba1b08d3
commit
b10b157d9e
@ -132,8 +132,8 @@ pub const Image = extern struct {
|
||||
return GenImageGradientV(width, height, top, bottom);
|
||||
}
|
||||
|
||||
pub fn GenGradientV(width: c_int, height: c_int, left: Color, right: Color) Image {
|
||||
return GenImageGradientV(width, height, left, right);
|
||||
pub fn GenGradientH(width: c_int, height: c_int, left: Color, right: Color) Image {
|
||||
return GenImageGradientH(width, height, left, right);
|
||||
}
|
||||
|
||||
pub fn GenGradientRadial(width: c_int, height: c_int, density: f32, inner: Color, outer: Color) Image {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user