Skip to content

Commit

Permalink
Bump ext/SDL from 6ff31e1 to 8387fae (#418)
Browse files Browse the repository at this point in the history
* Bump ext/SDL from `6ff31e1` to `8387fae`

Bumps [ext/SDL](https://github.com/libsdl-org/SDL) from `6ff31e1` to `8387fae`.
- [Release notes](https://github.com/libsdl-org/SDL/releases)
- [Commits](libsdl-org/SDL@6ff31e1...8387fae)

---
updated-dependencies:
- dependency-name: ext/SDL
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update C# bindings

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: lithiumtoast <[email protected]>
  • Loading branch information
dependabot[bot] and lithiumtoast authored Sep 4, 2023
1 parent 6b9a34a commit ac1e9b1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/cs/production/SDL/Generated/AssemblyAttributes.gen.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// To disable generating this file set `isEnabledGenerateAssemblyAttributes` to `false` in the config file for generating C# code.
// <auto-generated>
// This code was generated by the following tool on 2023-08-31 14:43:54 GMT+00:00:
// This code was generated by the following tool on 2023-09-04 01:17:19 GMT+00:00:
// https://github.com/bottlenoselabs/c2cs (v6.1.3.0)
//
// Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down
10 changes: 9 additions & 1 deletion src/cs/production/SDL/Generated/SDL.gen.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

// <auto-generated>
// This code was generated by the following tool on 2023-08-31 14:43:54 GMT+00:00:
// This code was generated by the following tool on 2023-09-04 01:17:19 GMT+00:00:
// https://github.com/bottlenoselabs/c2cs (v6.1.3.0)
//
// Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down Expand Up @@ -599,6 +599,10 @@ public static unsafe partial class SDL
[DllImport(LibraryName, EntryPoint = "SDL_GetAudioStreamFormat", CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_GetAudioStreamFormat(SDL_AudioStream* stream, SDL_AudioSpec* src_spec, SDL_AudioSpec* dst_spec);

[CNode(Kind = "Function")]
[DllImport(LibraryName, EntryPoint = "SDL_GetAudioStreamSpeed", CallingConvention = CallingConvention.Cdecl)]
public static extern float SDL_GetAudioStreamSpeed(SDL_AudioStream* stream);

[CNode(Kind = "Function")]
[DllImport(LibraryName, EntryPoint = "SDL_GetBasePath", CallingConvention = CallingConvention.Cdecl)]
public static extern CString SDL_GetBasePath();
Expand Down Expand Up @@ -2307,6 +2311,10 @@ public static unsafe partial class SDL
[DllImport(LibraryName, EntryPoint = "SDL_SetAudioStreamPutCallback", CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_SetAudioStreamPutCallback(SDL_AudioStream* stream, SDL_AudioStreamCallback callback, void* userdata);

[CNode(Kind = "Function")]
[DllImport(LibraryName, EntryPoint = "SDL_SetAudioStreamSpeed", CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_SetAudioStreamSpeed(SDL_AudioStream* stream, float speed);

[CNode(Kind = "Function")]
[DllImport(LibraryName, EntryPoint = "SDL_SetClipboardData", CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_SetClipboardData(SDL_ClipboardDataCallback callback, SDL_ClipboardCleanupCallback cleanup, void* userdata, CString* mime_types, ulong num_mime_types);
Expand Down

0 comments on commit ac1e9b1

Please sign in to comment.