mirror of
https://github.com/nicbarker/clay.git
synced 2025-11-05 09:06:17 +00:00
[bindings/odin] allows clay to statically dispatch based on const
This commit is contained in:
parent
588b93196c
commit
3c2082e309
|
|
@ -439,7 +439,12 @@ UI_AutoId :: proc() -> proc (config: ElementDeclaration) -> bool {
|
|||
|
||||
UI :: proc{UI_WithId, UI_AutoId};
|
||||
|
||||
Text :: proc($text: string, config: ^TextElementConfig) {
|
||||
Text :: proc {
|
||||
TextStatic,
|
||||
TextDynamic,
|
||||
}
|
||||
|
||||
TextStatic :: proc($text: string, config: ^TextElementConfig) {
|
||||
wrapped := MakeString(text)
|
||||
wrapped.isStaticallyAllocated = true
|
||||
_OpenTextElement(wrapped, config)
|
||||
|
|
|
|||
Loading…
Reference in a new issue