Pete´s Messageboard... No ISO/BIOS requests!

Homepage Members Register Login Search Old board


Neuer Thread ...
More : [1] [2] [3] [4]


AuthorTopics » Book an abo for this threadClose Thread Move Thread Fix the thread Print view Delete this thread

The_Source ...
Real addict
.........

...

Status:Offline
Date registered: 14.07.2004
Post:527
Send Message
...   Created on 03.11.2007 - 14:04Jump to top Quote this post Report this post Edit Delete


--I think mr. Barman, err. Badman, err. Batman think his posts are too provocative although very profound and true

It looks like common spam. Hasn't he more important things to do?

--you Source, for example only spit on ePSXe right from beginning

I'm not sure what you are talking about. Most of my posts are advices to users for their problems. I'm trying to find the best solution each time, including best fitting plugins, settings, or even emu. I'm don't "spit" on anything.





Signature
He wants to cure the minds,
The minds of entire humankind


netcap 



...

Status:Offline
Date registered: 01.06.2008
Post:1
Send Message
...   Created on 01.06.2008 - 07:06Jump to top Quote this post Report this post Edit Delete


For some reason i can't access the download page,even i use proxy... Is there anyone can send me a copy of new shader pack? you coule send it to netcap@live.cn,Thank you !




KrossX 
Real addict
.........

...

Status:Offline
Date registered: 16.06.2008
Post:122
Send Message
...   Created on 16.06.2008 - 22:49Jump to top Quote this post Report this post Edit Delete


Better late than never!

Here's a mirror for the shader pack:

Guest(r)'s Shaderpack 2.3 (4.11.2007)





Signature


johndau 



...

Status:Offline
Date registered: 20.07.2008
Post:1
Send Message
...   Created on 20.07.2008 - 04:16Jump to top Quote this post Report this post Edit Delete


Just a note to say a big thankyou.
The shaders are great.




guest ...
Real addict
.........

...

Status:Offline
Date registered: 30.07.2004
Post:854
Send Message
...   Created on 29.08.2008 - 14:18Jump to top Quote this post Report this post Edit Delete


New pack soon.




Z 
Real addict
.........

...

Status:Offline
Date registered: 03.08.2005
Post:103
Send Message
...   Created on 02.09.2008 - 13:07Jump to top Quote this post Report this post Edit Delete


Nice. Can't wait.




KrossX 
Real addict
.........

...

Status:Offline
Date registered: 16.06.2008
Post:122
Send Message
...   Created on 16.09.2008 - 00:31Jump to top Quote this post Report this post Edit Delete


Yeah! New pack! New pack!! ^^





Signature


Z 
Real addict
.........

...

Status:Offline
Date registered: 03.08.2005
Post:103
Send Message
...   Created on 23.11.2008 - 17:55Jump to top Quote this post Report this post Edit Delete


New pack! New pack! : D




Snu 



...

Status:Offline
Date registered: 07.10.2003
Post:3
Send Message
...   Created on 07.03.2009 - 20:42Jump to top Quote this post Report this post Edit Delete


Here's another cheer for a new pack. Yay!





Signature
9:) Lindsey Dubb

SuheBator 



...

Status:Offline
Date registered: 08.03.2009
Post:1
Send Message
...   Created on 08.03.2009 - 04:16Jump to top Quote this post Report this post Edit Delete


I would suggest add a little cell-shading to AA Shader v2.o. It looks great for me. AA 2.o looks blury on 1024x768 without cell-shading.

Code:
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:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
 
/*
   AA cell-shader v2.o
   
   Copyright (C) 2006 guest(r) - guest.r@gmail.com

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public License
   as published by the Free Software Foundation; either version 2
   of the License, or (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

*/

const float th = 0.50;      // outlines sensitivity, recommended from 0.00...0.50
const float bb = 0.10;      // outlines strength,    recommended from 0.10...2.00
const float pp = 1.50;      // outlines blackening,  recommended from 0.25...2.00

uniform sampler2D OGL2Texture;

void main()
{
    vec3 c00 = texture2D(OGL2Texture, gl_TexCoord[5].xy).xyz; 
    vec3 c10 = texture2D(OGL2Texture, gl_TexCoord[1].xy).xyz; 
    vec3 c20 = texture2D(OGL2Texture, gl_TexCoord[2].zw).xyz; 
    vec3 c01 = texture2D(OGL2Texture, gl_TexCoord[3].xy).xyz; 
    vec3 c11 = texture2D(OGL2Texture, gl_TexCoord[0].xy).xyz; 
    vec3 c21 = texture2D(OGL2Texture, gl_TexCoord[4].xy).xyz; 
    vec3 c02 = texture2D(OGL2Texture, gl_TexCoord[1].zw).xyz; 
    vec3 c12 = texture2D(OGL2Texture, gl_TexCoord[2].xy).xyz; 
    vec3 c22 = texture2D(OGL2Texture, gl_TexCoord[6].xy).xyz; 
    vec3 dt = vec3(1.0,1.0,1.0); 

    float d1=dot(abs(c00-c22),dt)+0.0001;
    float d2=dot(abs(c20-c02),dt)+0.0001;
    float hl=dot(abs(c01-c21),dt)+0.0001;
    float vl=dot(abs(c10-c12),dt)+0.0001;

    float md = d1+d2;   float mc = hl+vl;
    hl*=  md;vl*= md;   d1*=  mc;d2*= mc;
    
        float ww = d1+d2+hl+vl;
        float d = bb*pow(max(d1+d2+hl+vl-th,0.0),pp)/(dot(c11,dt)+0.25);
    gl_FragColor.xyz= (hl*(c10+c12)+vl*(c01+c21)+d1*(c20+c02)+d2*(c00+c22)+ww*(1.1-d)*c11)/(3.0*ww);
}




More : [1] [2] [3] [4]

Similarly threads:
Topics Created by Replies Boardname
Shader Aquamarin 0 schaddi
New shader pack guest -1 pete_bernert
Natural Vision Shader + AA Shader v2.o = Best Shader for 2d !! zaykho 16 pete_bernert
shader guest 2 pete_bernert
xbr shader pmc2 26 pete_bernert
Neuer Thread ...





Masthead

This forum is a free service of razyboard.com
Do you want a free forum in less than two minutes? Then click here!



Verwandte Suchbegriffe:
epsxe shaders | epsxe shader | epsxe shader pack | best epsxe shader | shader epsxe | best epsxe shaders | epsxe best shader | shaders for epsxe
blank