Can't find the loadSDLImage function

user1234 user1234 at 12.de
Sun Mar 8 10:28:42 UTC 2026


On Sunday, 8 March 2026 at 10:27:57 UTC, user1234 wrote:
> On Saturday, 7 March 2026 at 22:56:41 UTC, WhatMeWorry wrote:
>> I load the SDL3 library fine, but when i try and load 
>> SDL3_image.dll i get error:
>>
>> [...]
>>
>> I've got the bindbc-sdl, -common, -loader which is all the 
>> dependencies required by SDL.
>> I've even tried searching through github trying to find 
>> loadSDLImage() function but with no success. where is this 
>> function?
>
> The function definitions are generated using mixins, at first 
> glance the one you are looking for has to be in sdl_image, so 
> based on the module name:
>
> ```d
> import bindbc.sdl_image;
> ```
>
> should be tried.

rather just

```d
import sdl_image;
```


More information about the Digitalmars-d-learn mailing list