How to use Alpha channel in GOP Framebuffers?

0

While developing an operating system, I can draw a shape with any color with 0xFFFFFFFF, All RGB Channels are working but Alpha channel is not working why?

And How can I make Alpha channel work?

I am using GOP Framebuffers;

void PlotPixel(uint32_t x, uint32_t y, unsigned int color) { buffer->baseAddress + (x*4) + (y * buffer->PPSL * 4) = color; }

PlotPixel(400, 450, 0x6EFFFFFF);

https://wiki.osdev.org/GOP

c
graphics
operating-system
asked on Stack Overflow May 10, 2021 by Vapour Dev • edited May 10, 2021 by Vapour Dev

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0