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:
parent
66216d3af6
commit
0da3a2ddde
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue