Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106094398
double_buffer.cc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Mar 22, 08:13
Size
967 B
Mime Type
text/x-c
Expires
Mon, Mar 24, 08:13 (2 d)
Engine
blob
Format
Raw Data
Handle
25112546
Attached To
R7871 phys-743-exercises
double_buffer.cc
View Options
/* -------------------------------------------------------------------------- */
#include "double_buffer.hh"
#include "grid.hh"
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
DoubleBuffer::DoubleBuffer(int m, int n)
: m_current(new Grid(m, n)), m_old(new Grid(m, n)) {}
/* -------------------------------------------------------------------------- */
Grid & DoubleBuffer::current() { return *m_current; }
/* -------------------------------------------------------------------------- */
Grid & DoubleBuffer::old() { return *m_old; }
/* -------------------------------------------------------------------------- */
void DoubleBuffer::swap() {
m_current.swap(m_old);
}
/* -------------------------------------------------------------------------- */
void DoubleBuffer::resize(int m, int n) {
m_current->resize(m, n);
m_old->resize(m, n);
}
Event Timeline
Log In to Comment