View Single Post
Old 5th June 2014, 00:50   #8  |  Link
Shiandow
Registered User
 
Join Date: Dec 2013
Posts: 753
Well, it does need a lot of texture calls, then again so does Jinc. What program did you use?

Edit: You can also try making the window smaller by changing the line:
Code:
	float4 lancz = {0.328511,-0.0365013,-0.0365013,0.0040557};
	lancz /= dot(lancz,4);
	float4 w = {1,1,1,0};
to
Code:
	float4 lancz = {0.328511,-0.0365013,0,0};
	lancz /= dot(lancz,4);
	float4 w = {1,1,0,0};
or even
Code:
	float4 lancz = {1,0,0,0};
	lancz /= dot(lancz,4);
	float4 w = {1,0,0,0};

Last edited by Shiandow; 5th June 2014 at 01:10.
Shiandow is offline   Reply With Quote