]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/uniformblock.cpp
Move backend information into Device
[libs/gl.git] / source / core / uniformblock.cpp
index 6f63e385a7bbf6dad1791a3c7782dbf3c350abbd..adadf0561c8051c54d06c2ac43a3a3608e6539dd 100644 (file)
@@ -1,90 +1,81 @@
-#include <stdexcept>
-#include <msp/gl/extensions/arb_shader_objects.h>
-#include <msp/gl/extensions/arb_uniform_buffer_object.h>
-#include "buffer.h"
-#include "color.h"
-#include "error.h"
-#include "matrix.h"
-#include "uniform.h"
+#include <algorithm>
+#include "device.h"
 #include "uniformblock.h"
-#include "vector.h"
 
 using namespace std;
 
 namespace Msp {
 namespace GL {
 
-UniformBlock::UniformBlock():
-       size(0),
-       buf_range(0)
-{
-       static Require _req(ARB_shader_objects);
-}
+UniformBlock::UniformBlock(const ReflectData::UniformBlockInfo &info):
+       UniformBlockBackend(info.bind_point>=0),
+       data(info.data_size)
+{ }
 
-UniformBlock::UniformBlock(unsigned s):
-       size(s),
-       buf_range(0)
+size_t UniformBlock::get_alignment() const
 {
-       static Require _req(ARB_uniform_buffer_object);
-
-       if(!size)
-               throw invalid_argument("UniformBlock::UniformBlock");
-       data.resize(size);
+       return Device::get_current().get_info().limits.uniform_buffer_alignment;
 }
 
-UniformBlock::~UniformBlock()
+void UniformBlock::store(const ReflectData::UniformInfo &info, size_t array_size, const void *value)
 {
-       delete buf_range;
-}
-
-unsigned UniformBlock::get_alignment() const
-{
-       return BufferRange::get_uniform_buffer_alignment();
-}
+       array_size = min(array_size, max<size_t>(info.array_size, 1U));
 
-void UniformBlock::location_changed(Buffer *buf, unsigned off, unsigned) const
-{
-       delete buf_range;
-       buf_range = new BufferRange(*buf, off, size);
-}
-
-void UniformBlock::attach(int index, const Uniform &uni)
-{
-       if(size)
-               throw invalid_operation("UniformBlock::attach");
-
-       uniforms[index] = &uni;
-}
-
-void UniformBlock::attach(const Program::UniformInfo &info, const Uniform &uni)
-{
-       if(size)
+       char *store_ptr;
+       bool packed;
+       if(info.block->bind_point<0)
        {
-               uni.store(info, &data[info.offset]);
-               dirty = true;
+               if(info.location<0)
+                       return;
+
+               store_ptr = data.data()+info.location*16;
+               packed = true;
        }
        else
-               uniforms[info.location] = &uni;
-}
-
-void UniformBlock::apply(int index) const
-{
-       if((index>=0) != (size>0))
-               throw invalid_operation("UniformBlock::apply");
-
-       if(size)
        {
-               if(!get_buffer())
-                       throw invalid_operation("UniformBlock::apply");
+               store_ptr = data.data()+info.offset;
+               if(array_size!=1 && info.array_stride!=get_type_size(info.type))
+                       packed = false;
+               else if(is_matrix(info.type))
+                       packed = (info.matrix_stride==get_type_size(get_matrix_column_type(info.type)));
+               else
+                       packed = true;
+       }
 
-               refresh();
-               buf_range->bind_to(UNIFORM_BUFFER, index);
+       const char *value_ptr = static_cast<const char *>(value);
+       if(packed)
+       {
+               const char *data_end = value_ptr+array_size*get_type_size(info.type);
+               copy(value_ptr, data_end, store_ptr);
+       }
+       else if(is_matrix(info.type))
+       {
+               unsigned col_size = get_type_size(get_matrix_column_type(info.type));
+               unsigned cols = get_type_size(info.type)/col_size;
+               for(unsigned i=0; i<array_size; ++i)
+               {
+                       char *elem_ptr = store_ptr;
+                       for(unsigned j=0; j<cols; ++j)
+                       {
+                               copy(value_ptr, value_ptr+col_size, elem_ptr);
+                               value_ptr += col_size;
+                               elem_ptr += info.matrix_stride;
+                       }
+                       store_ptr += info.array_stride;
+               }
        }
        else
        {
-               for(map<int, const Uniform *>::const_iterator i=uniforms.begin(); i!=uniforms.end(); ++i)
-                       i->second->apply(i->first);
+               unsigned elem_size = get_type_size(info.type);
+               for(unsigned i=0; i<array_size; ++i)
+               {
+                       copy(value_ptr, value_ptr+elem_size, store_ptr);
+                       value_ptr += elem_size;
+                       store_ptr += info.array_stride;
+               }
        }
+
+       dirty = true;
 }
 
 } // namespace GL