refactor ColumnRenderBuffer

This commit is contained in:
James Seibel
2023-03-06 20:30:59 -06:00
parent b63c4b9e7e
commit a517e6997b
4 changed files with 484 additions and 316 deletions
@@ -64,9 +64,13 @@ public enum EGpuUploadMethod
*/
DATA(false, false);
public final boolean useEarlyMapping;
public final boolean useBufferStorage;
EGpuUploadMethod(boolean useEarlyMapping, boolean useBufferStorage) {
EGpuUploadMethod(boolean useEarlyMapping, boolean useBufferStorage)
{
this.useEarlyMapping = useEarlyMapping;
this.useBufferStorage = useBufferStorage;
}