softgpu: Avoid unnecessary flushing for curves.
We don't need to flush all drawing between curves in softgpu, let them queue up.
This commit is contained in:
parent
337518415e
commit
fc39f042ae
4 changed files with 9 additions and 3 deletions
|
@ -54,6 +54,7 @@ SoftwareDrawEngine::SoftwareDrawEngine() {
|
|||
// All this is a LOT of memory, need to see if we can cut down somehow. Used for splines.
|
||||
decoded = (u8 *)AllocateMemoryPages(DECODED_VERTEX_BUFFER_SIZE, MEM_PROT_READ | MEM_PROT_WRITE);
|
||||
decIndex = (u16 *)AllocateMemoryPages(DECODED_INDEX_BUFFER_SIZE, MEM_PROT_READ | MEM_PROT_WRITE);
|
||||
flushOnParams_ = false;
|
||||
}
|
||||
|
||||
SoftwareDrawEngine::~SoftwareDrawEngine() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue