mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 09:41:02 +00:00
28 lines
588 B
C
28 lines
588 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <AK/SIMD.h>
|
||
|
|
#include <LibGfx/Vector2.h>
|
||
|
|
#include <LibGfx/Vector3.h>
|
||
|
|
#include <LibGfx/Vector4.h>
|
||
|
|
|
||
|
|
namespace SoftGPU {
|
||
|
|
|
||
|
|
struct PixelQuad final {
|
||
|
|
Vector2<AK::SIMD::i32x4> screen_coordinates;
|
||
|
|
Vector3<AK::SIMD::f32x4> barycentrics;
|
||
|
|
AK::SIMD::f32x4 depth;
|
||
|
|
Vector4<AK::SIMD::f32x4> vertex_color;
|
||
|
|
Vector4<AK::SIMD::f32x4> uv;
|
||
|
|
Vector4<AK::SIMD::f32x4> out_color;
|
||
|
|
AK::SIMD::f32x4 fog_depth;
|
||
|
|
AK::SIMD::i32x4 mask;
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|