[Phi] adding foundations for image blitting
Mirror Gitea refs to GitHub / mirror (push) Successful in 12s
Test / build_and_test (push) Successful in 5m58s
Build / build (push) Successful in 7m26s

This commit is contained in:
2026-08-20 16:12:15 +02:00
parent b9c12eb599
commit 1fe3bacbee
9 changed files with 332 additions and 18 deletions
+14
View File
@@ -0,0 +1,14 @@
#include <Blitter.h>
#include <Memory.h>
PhiStatus BlitImage(const PhiCmdBlitImage* command)
{
const Memory* src_memory = (const Memory*)(uintptr_t)command->src_memory;
Memory* dst_memory = (Memory*)(uintptr_t)command->dst_memory;
for(uint32_t layer = 0; layer < command->layer_count; ++layer)
{
}
return PHI_STATUS_OK;
}