Replies: 1 comment 1 reply
-
You should check documentation and examples and you'll see how it's dealt with it... Search for |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
i try to fill content to a framebuffer ,then present framebuffer to screen
for example ,i draw a full screen texture to a framebuffer,then draw framebuffer's color to the screen
it seems has different result on Metal/OpenGL backend, Screen result shows that will flip texture's Y-axis on OpenGL backend and looks good on Metal.
And how to solve this problem?
simple vs draw a full screen image
simple fs draw a full screen image
mesh data
float vertices[] =
{
x, y2, 0, 1,
x, y, 0, 0,
x2, y2, 1, 1,
x2, y, 1, 0
};
i think there are somthing bgfx need to do.
gpuweb/gpuweb#416
Beta Was this translation helpful? Give feedback.
All reactions