diff options
author | Chris Robinson <[email protected]> | 2022-07-15 06:24:37 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-07-15 06:58:15 -0700 |
commit | af5d4fb77dd12bee2dd5c4b7feadcbab913d6290 (patch) | |
tree | 9a10efe4dd38caa17895b308ba0a42379ec824a1 /core/context.h | |
parent | 0f4679981b575cc76158126dec7d9bdda3ba1c29 (diff) |
Don't store and manage wet buffers separately
Diffstat (limited to 'core/context.h')
-rw-r--r-- | core/context.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/core/context.h b/core/context.h index d2e6b546..4e3ea195 100644 --- a/core/context.h +++ b/core/context.h @@ -40,17 +40,6 @@ enum class DistanceModel : unsigned char { }; -struct WetBuffer { - bool mInUse; - al::FlexArray<FloatBufferLine, 16> mBuffer; - - WetBuffer(size_t count) : mBuffer{count} { } - - DEF_FAM_NEWDEL(WetBuffer, mBuffer) -}; -using WetBufferPtr = std::unique_ptr<WetBuffer>; - - struct ContextProps { std::array<float,3> Position; std::array<float,3> Velocity; |