What is more important next gen, Vertex or Pixel processing?

What is more important next gen, Vertex or Pixel processing?

  • Pixel processing.

    Votes: 0 0.0%
  • Other.

    Votes: 0 0.0%

  • Total voters
    42
There is no correct way of interpolating vectors for the phong lighting equation, linear interpolation with renormalization is pretty much the norm.
 
nAo said:
MfA said:
As for geometry aliasing, you guys will have to find out how to use dynamic geometry LOD ... no matter how much of a bitch it is. Your worry, not mine :)
That's the same thing I repeat all the time..trying to sound like a broken record :)
We need to switch to 'different' geometry representations..ok, that's the last time I write that on B3D..I promise! :D

Replace geometry with voxels? *runs away...*
 
Jaws said:
Replace geometry with voxels? *runs away...*
I'm not talking about replacing standard geoemetry with voxels.
I'm talking about representing a 3D mesh (geometry and every kind of attribute that can be associated to a vertex..) NOT as a list of vertices and indicia + textures.

ciao,
Marco
 
nAo said:
Jaws said:
Replace geometry with voxels? *runs away...*
I'm not talking about replacing standard geoemetry with voxels.
I'm talking about representing a 3D mesh (geometry and every kind of attribute that can be associated to a vertex..) NOT as a list of vertices and indicia + textures.

ciao,
Marco

Gotcha... :D ....a different way to store the properties of vertices...

...definitely no expert, but how about in Cell, the APUlets can be a vertex (or local groups of vertices) and the APUlets themselves would hold the instructions and all the data for those vertices. I'm just thinking of those parallel bricks being rendered using APUlets, would that work? ....feel free to slap me with a kipper if it's an idiotic suggestion! :D

EDIT: Someone also mentioned to me that OpenGL ES gets rid of display lists, is that true?
 
MfA said:
There is no correct way of interpolating vectors for the phong lighting equation, linear interpolation with renormalization is pretty much the norm.
It is? Maybe on high end PC cards, but on xbox I doubt it could handle an extra phong renormalization pass in games that use a lot of Dot3 like Doom 3 or Riddick. And doing it procedurally with combiners is probably out of the question.
 
ERP said:
Pixar solve the problem by tessalating in screen space which is what texture mapping effectively does.
The difference is that you still tesselate 3d data, so you can displace it etc. for real not just warp the pixels around.
Anyway personally I like the idea for its elegance and arguable simplicity - doing away with splitting shader code and keeping the nonshader stuff organized in a cleaner manner (from my pow, I'm sure not everyone would agree).

That said, I don't believe we could throw away the texture sampling hw at all - I don't see a suitable hw replacement for texture lookup based shader schemes coming anytime soon.
And that's something different data representation don't exactly solve either, should they become feasible.

nAo said:
We need to switch to 'different' geometry representations..ok, that's the last time I write that on B3D..I promise!
No worries, you're not alone in that mindset :p I think we'll want to do that to some extent one way or another - it's among better researched avenues of compression and I believe that'll be one of the bigger things in next cycle.
 
Also I wouldnt be surprised if view dependent tesselation is something the PS3 can do, and the others will be hard pressed to (instead heaving to rely on shoddy host passed geometry LOD parameters). View dependent recursive tesselation is probably right out of the question for anything but the PS3 (you need a vertex shader capable of emitting variable sized vertex arrays instead of vertices, and while I have been saying it would be a good idea for years I doubt ATI HW engineers will agree with me ... fools ;).
 
Sometimes I have the feeling Mfa has some info about PS3 we don't have..
Don't worry Marco, I know you have just a very good 'vision' about the future :)

ciao,
Marco
 
MfA said:
Also I wouldnt be surprised if view dependent tesselation is something the PS3 can do, and the others will be hard pressed to

Oh yeah of little faith ;-)
 
Back
Top