{"id":15478200,"url":"https://github.com/alexmercerind/flutter-windows-angle-opengl-es","last_synced_at":"2025-08-20T22:31:27.581Z","repository":{"id":43761765,"uuid":"511571415","full_name":"alexmercerind/flutter-windows-ANGLE-OpenGL-ES","owner":"alexmercerind","description":"OpenGL ES inside Flutter Windows.","archived":false,"fork":false,"pushed_at":"2024-09-28T13:40:26.000Z","size":9425,"stargazers_count":39,"open_issues_count":0,"forks_count":13,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-19T03:05:48.544Z","etag":null,"topics":["angle","desktop","direct-3d","flutter","flutter-desktop","open-gl","windows"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alexmercerind.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-07-07T15:00:49.000Z","updated_at":"2024-08-22T14:32:20.000Z","dependencies_parsed_at":"2024-11-01T00:04:29.488Z","dependency_job_id":"dff0b721-b274-4e8a-827d-ed69ae6da923","html_url":"https://github.com/alexmercerind/flutter-windows-ANGLE-OpenGL-ES","commit_stats":{"total_commits":34,"total_committers":2,"mean_commits":17.0,"dds":0.02941176470588236,"last_synced_commit":"f5aecbb3afb7101d62688d83aa9c19442161d024"},"previous_names":["alexmercerind/flutter-windows-angle-opengl-es"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/alexmercerind/flutter-windows-ANGLE-OpenGL-ES","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexmercerind%2Fflutter-windows-ANGLE-OpenGL-ES","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexmercerind%2Fflutter-windows-ANGLE-OpenGL-ES/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexmercerind%2Fflutter-windows-ANGLE-OpenGL-ES/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexmercerind%2Fflutter-windows-ANGLE-OpenGL-ES/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexmercerind","download_url":"https://codeload.github.com/alexmercerind/flutter-windows-ANGLE-OpenGL-ES/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexmercerind%2Fflutter-windows-ANGLE-OpenGL-ES/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271397933,"owners_count":24752634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-20T02:00:09.606Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angle","desktop","direct-3d","flutter","flutter-desktop","open-gl","windows"],"created_at":"2024-10-02T04:02:42.433Z","updated_at":"2025-08-20T22:31:25.656Z","avatar_url":"https://github.com/alexmercerind.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flutter-windows-ANGLE-OpenGL-ES\n\nOpenGL ES hardware accelerated rendering on Flutter Windows `Texture` Widget using ANGLE.\n\n![](https://user-images.githubusercontent.com/28951144/177827046-35d2599e-6162-49a0-989f-048dc3b40bb5.png)\n\n## Introduction\n\n[ANGLE (Almost Native Graphics Layer Engine)](https://github.com/google/angle) is used in this example, which translates these OpenGL ES calls to DirectX 11 (which Flutter Windows now supports) calls internally. The example uses the [new Direct3D texture interop capability for Flutter Windows](https://github.com/flutter/engine/pull/26840) added by [@jnschulze](https://github.com/jnschulze).\n\nI compiled ANGLE for Windows on my machine \u0026 [.DLLs / .LIBs are present in this repository](https://github.com/alexmercerind/flutter-windows-ANGLE-OpenGL-Direct3D-Interop/tree/master/windows/bin), which are used by the application. The code in this repository is very straightforward \u0026 procedurally written without any boilerplate. I hope this serves as a great example.\n\n## Notes\n\nAs of 07/07/2022, you need to be on `master` channel of Flutter.\n\n```bash\nFlutter 3.1.0-0.0.pre.1533 • channel master • https://github.com/flutter/flutter.git\nFramework • revision 78e3b93664 (5 hours ago) • 2022-07-07 08:34:06 -0400\nEngine • revision 56faff459e\nTools • Dart 2.18.0 (build 2.18.0-261.0.dev) • DevTools 2.15.0\n```\n\n## Run\n\n```bash\ngit clone https://github.com/alexmercerind/flutter-windows-ANGLE-OpenGL-ES.git\ncd flutter-windows-ANGLE-OpenGL-ES\ncd example\nflutter run --verbose\n```\n\n## Acknowlegements\n\n- [@jnschulze](https://github.com/jnschulze) for working on [Windows: Add Direct3D texture interoperability support](https://github.com/flutter/engine/pull/26840) in [flutter/engine](https://github.com/flutter/engine).\n- [@clarkezone](https://github.com/clarkezone) for awesome ANGLE + Windows article at [A common OpenGL renderer for UWP and Win32 using ANGLE and Win.UI.Composition](https://clarkezone.github.io/angle/2020/02/24/angle.html).\n\n## References\n\n- [Example project showing usage of ANGLE on Windows from @clarkezone](https://github.com/clarkezone/anglehosting).\n- [Interop-with-other-DirectX-code section in Microsoft's ANGLE repository](https://github.com/Microsoft/angle/wiki/Interop-with-other-DirectX-code).\n- [HelloTriangle.cpp from ANGLE repository](https://github.com/google/angle/blob/main/samples/hello_triangle/HelloTriangle.cpp).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexmercerind%2Fflutter-windows-angle-opengl-es","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexmercerind%2Fflutter-windows-angle-opengl-es","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexmercerind%2Fflutter-windows-angle-opengl-es/lists"}