How to import external APIs to Godot?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By BSS

Hi
Can i import external APIs to godot? (like OpenGL, SFML or other like these…)

:bust_in_silhouette: Reply From: Ertain

I don’t know about “importing” an API. But you can find bindings for a language or a certain platform in Godot.

:bust_in_silhouette: Reply From: Zylann

You can add C++ libraries using GDNative: GDExtension — Godot Engine (stable) documentation in English

Or by recompiling the engine with a new module: Binding to external libraries — Godot Engine (stable) documentation in English

However the libraries you mention, while possible to add by those means as well, make little sense to be added. Godot already uses OpenGL, and SFML will come up redundant with Godot’s rendering engine and framework.