]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/backend.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / core / backend.h
index ef04bd1182c4214eff56f6baed75c22a47ace1bc..abdb4ccf4b27a72e6af5375f5a0ce0839816b928 100644 (file)
@@ -9,7 +9,8 @@ namespace GL {
 enum GraphicsApi
 {
        OPENGL,
-       OPENGL_ES
+       OPENGL_ES,
+       VULKAN
 };
 
 struct Version
@@ -29,9 +30,6 @@ struct Version
 /** Returns the backend for which the library was compiled. */
 GraphicsApi get_backend_api();
 
-/** Returns the backend version number, as reported by the implementation. */
-const Version &get_backend_version();
-
 } // namespace GL
 } // namespace Msp