1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 11:57:36 +00:00

LibSoftGPU: Implement shader processor for SoftGPU ISA

This adds a shader processor that executes our ISA when a fragment
shader is currently bound to the device.
This commit is contained in:
Stephan Unverwerth 2022-09-17 17:52:34 +02:00 committed by Andrew Kaster
parent 1e548a84d6
commit b18bf702ea
5 changed files with 170 additions and 0 deletions

View file

@ -3,6 +3,7 @@ set(SOURCES
Device.cpp
Image.cpp
PixelConverter.cpp
ShaderProcessor.cpp
Sampler.cpp
Shader.cpp
)