Skip to content

Commit

Permalink
Merge pull request #1013 from waywardmonkeys/fix-typos
Browse files Browse the repository at this point in the history
Fix a couple of typos.
  • Loading branch information
floooh committed Mar 20, 2024
2 parents dd00e4d + 05fa1c7 commit 00c9072
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sokol_gfx.h
Original file line number Diff line number Diff line change
Expand Up @@ -2432,7 +2432,7 @@ typedef struct sg_pass_action {
as 'type erased' void pointers:

GL: on all GL backends, a GL framebuffer object must be provided. This
can be zero for the defaul framebuffer.
can be zero for the default framebuffer.

D3D11:
- an ID3D11RenderTargetView for the rendering surface, without
Expand Down
2 changes: 1 addition & 1 deletion sokol_glue.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
functions. Use this in the sg_setup() call like this:
sg_setup(&(sg_desc){
.environment = sglue_enviornment(),
.environment = sglue_environment(),
...
});
Expand Down
2 changes: 1 addition & 1 deletion util/sokol_gfx_imgui.h
Original file line number Diff line number Diff line change
Expand Up @@ -2155,7 +2155,7 @@ _SOKOL_PRIVATE sgimgui_str_t _sgimgui_capture_item_string(sgimgui_t* ctx, int in
case SGIMGUI_CMD_UNINIT_ATTACHMENTS:
{
sgimgui_str_t res_id = _sgimgui_attachments_id_string(ctx, item->args.uninit_attachments.attachments);
_sgimgui_snprintf(&str, "%d: sg_uninit_attachemnts(atts=%s)", index, res_id.buf);
_sgimgui_snprintf(&str, "%d: sg_uninit_attachments(atts=%s)", index, res_id.buf);
}
break;

Expand Down

0 comments on commit 00c9072

Please sign in to comment.