Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add an example to the docs of using the C++ wrappers directly #3

Merged
merged 1 commit into from
Jul 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,14 @@ the current scope. e.g. `SetRef(ctx, "My window")` is fine, but it'll do the
same thing as `SetRef("My window")`.

!!! note
Loads of methods are missing bindings, feel free to open an issue or
contribute them yourself if you're missing one.
Loads of test context methods are missing Julia wrappers, feel free to open
an issue or contribute them yourself if you're missing one.

If you want to try calling the wrapped C++ functions directly, it'll
probably boil down to something like:
```julia
te.lib.Thing(ctx, te.lib.ImGuiTestRef("my ref"))
```

```@docs
TestContext
Expand Down
Loading