mirror of
https://github.com/Drezil/dear-imgui.hs.git
synced 2024-11-22 08:56:59 +00:00
This change fixes the high level API to use the right Raw call (#164)
This commit is contained in:
parent
258777f8c7
commit
d933248a2c
@ -983,7 +983,7 @@ sliderFloat2 desc ref minValue maxValue = liftIO do
|
||||
(x, y) <- get ref
|
||||
withArray [ realToFrac x, realToFrac y ] \floatPtr -> do
|
||||
changed <- Text.withCString desc \descPtr ->
|
||||
Raw.sliderFloat descPtr floatPtr (CFloat minValue) (CFloat maxValue)
|
||||
Raw.sliderFloat2 descPtr floatPtr (CFloat minValue) (CFloat maxValue)
|
||||
|
||||
when changed do
|
||||
[x', y'] <- peekArray 2 floatPtr
|
||||
@ -997,7 +997,7 @@ sliderFloat3 desc ref minValue maxValue = liftIO do
|
||||
(x, y, z) <- get ref
|
||||
withArray [ realToFrac x, realToFrac y, realToFrac z ] \floatPtr -> do
|
||||
changed <- Text.withCString desc \descPtr ->
|
||||
Raw.sliderFloat descPtr floatPtr (CFloat minValue) (CFloat maxValue)
|
||||
Raw.sliderFloat3 descPtr floatPtr (CFloat minValue) (CFloat maxValue)
|
||||
|
||||
when changed do
|
||||
[x', y', z'] <- peekArray 3 floatPtr
|
||||
@ -1011,7 +1011,7 @@ sliderFloat4 desc ref minValue maxValue = liftIO do
|
||||
(x, y, z, u) <- get ref
|
||||
withArray [ realToFrac x, realToFrac y, realToFrac z, realToFrac u ] \floatPtr -> do
|
||||
changed <- Text.withCString desc \descPtr ->
|
||||
Raw.sliderFloat descPtr floatPtr (CFloat minValue) (CFloat maxValue)
|
||||
Raw.sliderFloat4 descPtr floatPtr (CFloat minValue) (CFloat maxValue)
|
||||
|
||||
when changed do
|
||||
[x', y', z', u'] <- peekArray 4 floatPtr
|
||||
|
Loading…
Reference in New Issue
Block a user