Attempt xcb image put.

This commit is contained in:
James Grogan 2022-11-12 13:46:10 +00:00
parent c6d03f16d0
commit 5d984aa61d
6 changed files with 78 additions and 6 deletions

View file

@ -19,7 +19,7 @@ Image<T>::~Image()
template<typename T>
void Image<T>::initialize()
{
mData = std::vector<T>(getBytesPerRow()*mHeight, 0);
mData = std::vector<T>(getBytesPerRow()*mHeight, 10);
}
template<typename T>