Merge pull request #629 from archshift/lcdfb
Implement SetLcdForceBlack and add implementation for color filling in the GPU code
This commit is contained in:
commit
b56829df02
12 changed files with 282 additions and 52 deletions
|
@ -45,6 +45,7 @@ static std::shared_ptr<Logger> global_logger;
|
|||
SUB(Service, SOC) \
|
||||
CLS(HW) \
|
||||
SUB(HW, Memory) \
|
||||
SUB(HW, LCD) \
|
||||
SUB(HW, GPU) \
|
||||
CLS(Frontend) \
|
||||
CLS(Render) \
|
||||
|
|
|
@ -65,6 +65,7 @@ enum class Class : ClassType {
|
|||
Service_SOC, ///< The SOC (Socket) service
|
||||
HW, ///< Low-level hardware emulation
|
||||
HW_Memory, ///< Memory-map and address translation
|
||||
HW_LCD, ///< LCD register emulation
|
||||
HW_GPU, ///< GPU control emulation
|
||||
Frontend, ///< Emulator UI
|
||||
Render, ///< Emulator video output and hardware acceleration
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue