mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-08 17:21:02 +00:00
19 lines
300 B
C
19 lines
300 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com>
|
||
|
|
* Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibSoftGPU/Vertex.h>
|
||
|
|
|
||
|
|
namespace SoftGPU {
|
||
|
|
|
||
|
|
struct Triangle {
|
||
|
|
Vertex vertices[3];
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|