1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

LibSoftGPU: Reference correct class in Typed2DBuffer comment

No functional changes.
This commit is contained in:
Jelle Raaijmakers 2022-05-08 01:29:40 +02:00 committed by Linus Groh
parent b5a39f5edb
commit e34e46ebb3

View file

@ -18,7 +18,7 @@
namespace SoftGPU {
/**
* Typed2DBuffer<T> wraps TypedBuffer<T> and only interacts on the 2D plane with z = 0.
* Typed2DBuffer<T> wraps Typed3DBuffer<T> and only interacts on the 2D plane with z = 0.
*/
template<typename T>
class Typed2DBuffer final : public RefCounted<Typed2DBuffer<T>> {