File size: 936 Bytes
b6a38d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
DefineClass.XDrawCache = {
	__parents = { "XWindow" },
	draw_stream_start = false,
	draw_stream_end = false,
	draw_last_frame = false
}

function XDrawCache:Invalidate()
	self.draw_stream_start = false
	XWindow.Invalidate(self)
end

local UIL = UIL
function XDrawCache:DrawWindow(clip_box)
	local last_frame, sstart, send = UIL.CopyDrawStream(self.draw_last_frame, self.draw_stream_start, self.draw_stream_end)
	self.draw_last_frame = last_frame
	if sstart then -- if the copy was successful, keep the indexes as we will need them the next frame.
		self.draw_stream_start = sstart
		self.draw_stream_end = send
		return
	end
	self.draw_stream_start = UIL.GetDrawStreamOffset()
	XWindow.DrawWindow(self, clip_box)
	self.draw_stream_end = UIL.GetDrawStreamOffset()
end

DefineClass.XDrawCacheDialog = {
	__parents = { "XDialog", "XDrawCache" },
}

DefineClass.XDrawCacheContextWindow = {
	__parents = { "XContextWindow", "XDrawCache" },
}