mirror of
https://github.com/stevenrobertson/cuburn.git
synced 2025-07-05 15:55:14 -04:00
Add new SmearClip filter, and make it the default.
Also removes haloclip's separate gamma; instead it will use colorclip's gamma setting. Also expanded side buffer to full size.
This commit is contained in:
@ -113,7 +113,7 @@ class Framebuffers(object):
|
||||
try:
|
||||
self.d_front = cuda.mem_alloc(16 * nbins)
|
||||
self.d_back = cuda.mem_alloc(16 * nbins)
|
||||
self.d_side = cuda.mem_alloc(8 * nbins)
|
||||
self.d_side = cuda.mem_alloc(16 * nbins)
|
||||
self.nbins = nbins
|
||||
except cuda.MemoryError, e:
|
||||
# If a frame that's too large sneaks by the task distributor, we
|
||||
|
Reference in New Issue
Block a user