Page 1 of 1

[Solved] Is BGA GUI compatible with VBE?

Posted: Fri Aug 12, 2016 1:47 am
by Octacone
Hello mighty programmers!
I want to enter BGA mode and make some GUI (need it for further feature testing). Now, could my code GUI code be executable by VBE once I make a switch to VBE?

Re: Is BGA GUI compatible with VBE?

Posted: Fri Aug 12, 2016 2:14 am
by Octocontrabass
octacone wrote:could my code GUI code be executable by VBE
VBE does not execute your code. :twisted:

As long as your BGA and VBE drivers provide access to the frame buffer with a common interface, your GUI won't need to know or care which one it's using.

Re: Is BGA GUI compatible with VBE?

Posted: Fri Aug 12, 2016 5:46 am
by Octacone
Octocontrabass wrote:
octacone wrote:could my code GUI code be executable by VBE
VBE does not execute your code. :twisted:

As long as your BGA and VBE drivers provide access to the frame buffer with a common interface, your GUI won't need to know or care which one it's using.
Awesome, epic, perfect. Thanks!