aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/PacketBuffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/PacketBuffer.hpp')
-rw-r--r--src/profiling/PacketBuffer.hpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/profiling/PacketBuffer.hpp b/src/profiling/PacketBuffer.hpp
deleted file mode 100644
index 3fa5c608fe..0000000000
--- a/src/profiling/PacketBuffer.hpp
+++ /dev/null
@@ -1,47 +0,0 @@
-//
-// Copyright © 2019 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include "IPacketBuffer.hpp"
-
-#include <memory>
-
-namespace arm
-{
-
-namespace pipe
-{
-
-class PacketBuffer : public IPacketBuffer
-{
-public:
- PacketBuffer(unsigned int maxSize);
-
- ~PacketBuffer() {}
-
- const unsigned char* GetReadableData() const override;
-
- unsigned int GetSize() const override;
-
- void MarkRead() override;
-
- void Commit(unsigned int size) override;
-
- void Release() override;
-
- unsigned char* GetWritableData() override;
-
- void Destroy() override;
-
-private:
- unsigned int m_MaxSize;
- unsigned int m_Size;
- std::unique_ptr<unsigned char[]> m_Data;
-};
-
-} // namespace pipe
-
-} // namespace arm