-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allocate sequential memory as if virtual paged
This forces allocated objects to be on the same page
- Loading branch information
Showing
4 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule library
updated
25 files
+1 −1 | CMakeLists.txt | |
+27 −4 | include/library/bitmap/bitmap.hpp | |
+9 −0 | include/library/bitmap/colortools.hpp | |
+14 −3 | include/library/math/toolbox.hpp | |
+5 −2 | include/library/opengl/fbo.hpp | |
+8 −2 | include/library/opengl/input.hpp | |
+8 −7 | include/library/opengl/query.hpp | |
+5 −3 | include/library/opengl/shader.hpp | |
+6 −0 | include/library/opengl/texture.hpp | |
+46 −38 | include/library/opengl/vao.hpp | |
+11 −15 | include/library/voxels/voxelizer.hpp | |
+13 −11 | include/library/voxels/voxelmodel.hpp | |
+100 −24 | library/bitmap/bitmap.cpp | |
+5 −5 | library/bitmap/colortools.cpp | |
+5,917 −5,504 | library/bitmap/lodepng.cpp | |
+638 −254 | library/bitmap/lodepng.h | |
+6 −5 | library/log.cpp | |
+2 −2 | library/math/baseconv.cpp | |
+32 −2 | library/opengl/fbo.cpp | |
+28 −21 | library/opengl/query.cpp | |
+26 −11 | library/opengl/shader.cpp | |
+0 −5 | library/opengl/texture.cpp | |
+103 −99 | library/opengl/vao.cpp | |
+36 −138 | library/voxels/voxelizer.cpp | |
+14 −9 | library/voxels/voxelmodel.cpp |
Submodule libriscv
updated
from 6fe411 to 444e9a