1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:57:45 +00:00

LibSoftGPU: Switch to using east const in Clipper.[h,cpp]

This commit is contained in:
Lenny Maiorani 2022-01-23 12:39:16 -07:00 committed by Linus Groh
parent 66216d3af6
commit 0da3a2ddde
2 changed files with 6 additions and 6 deletions

View file

@ -49,8 +49,8 @@ public:
void clip_triangle_against_frustum(Vector<Vertex>& input_vecs);
private:
bool point_within_clip_plane(const FloatVector4& vertex, ClipPlane plane);
Vertex clip_intersection_point(const Vertex& vec, const Vertex& prev_vec, ClipPlane plane_index);
bool point_within_clip_plane(FloatVector4 const& vertex, ClipPlane plane);
Vertex clip_intersection_point(Vertex const& vec, Vertex const& prev_vec, ClipPlane plane_index);
Vector<Vertex> list_a;
Vector<Vertex> list_b;
};