| 92 | } |
| 93 | |
| 94 | LMemoryBlock LMemoryBlock::fromLuaTable (luabind::object const& table) |
| 95 | { |
| 96 | return (luaArrayTomemoryBlock(table)); |
| 97 | } |
| 98 | |
| 99 | LMemoryBlock::LMemoryBlock (const void *dataToInitialiseFrom, size_t sizeInBytes) |
| 100 | : MemoryBlock (dataToInitialiseFrom, sizeInBytes) |
nothing calls this directly
no test coverage detected