DVD9 limits PGR4 (HUGE DISAPPOINTMENT)

LEBATO - IS WRONG
LEBATO
Inscrit depuis 6946 Jours
Posté par GriftGFX
Yup, beautiful! I'd say that's good enough, when it comes to different lighting conditions, although I would have preferred to see the difference extend to night and day. Still, stunning visuals!
Yeah, good enough is a good way to put it.
En réponse à
Phaethon360 - Mr Pant<s>s</s>ies
Phaethon360
Inscrit depuis 6670 Jours
You guys complaining about a good looking game? Sigh.

I'm glad we can't race at night. I'm scared of the dark. Oh God. My text is in the dark! HALP!
En réponse à

Phaethon, the forum Spectre.

GriftGFX - He can also<br>ban your ass!
GriftGFX
Inscrit depuis 6825 Jours
We can race at night -- but on night time tracks, we can't race in the day light! I think we're complaining because a feature of PGR3 has now gone missing.. but we're also acknowledging that it's been replaced by other features and content so it's more forgivable.
En réponse à
LEBATO - IS WRONG
LEBATO
Inscrit depuis 6946 Jours
Posté par GriftGFX
We can race at night -- but on night time tracks, we can't race in the day light! I think we're complaining because a feature of PGR3 has now gone missing.. but we're also acknowledging that it's been replaced by other features and content so it's more forgivable.
Yeah, I wouldn't even call it complaining. It's just disappointing.
En réponse à
GrimThorne
GrimThorne
Inscrit depuis 6697 Jours
Posté par LEBATO
Ok more info from Bizarre, they try to clear things up a bit. You can read about it here:

http://www.bizarrecreations.com/article.php?articl...
LEBATO, While I did enjoy the discussions that came from the topic you created, I have to say that given Bizarre's response that you seemed to have created a "Storm in a Tea Cup" over the DVD9 issue. lol

Bizarre's solution isn't one I would have chosen, but it works and the results are quite impressive.

Sometimes you have to give the developer an opportunity to explain their position before you run into a forum declaring "huge dissapointment" Although I know you weren't attacking Bizzarre, only the DVD9 format.
En réponse à
GriftGFX - He can also<br>ban your ass!
GriftGFX
Inscrit depuis 6825 Jours
Posté par GrimThorne
LEBATO, While I did enjoy the discussions that came from the topic you created, I have to say that given Bizarre's response that you seemed to have created a "Storm in a Tea Cup" over the DVD9 issue. lol

Bizarre's solution isn't one I would have chosen, but it works and the results are quite impressive.

Sometimes you have to give the developer an opportunity to explain their position before you run into a forum declaring "huge dissapointment" Although I know you weren't attacking Bizzarre, only the DVD9 format.
It does look great. Maybe I should change the topic title to, "Minor, insignificant disappointment!" ;P
En réponse à
SimonM7 - The other mod's bitch
SimonM7
Inscrit depuis 6848 Jours
Well, if I recall right we lost a couple of settings from 2 in 3 too. Or maybe it was from 1 to 2...

I think there was like day, night and dawn/dusk? Or did I dream that?
En réponse à
LEBATO - IS WRONG
LEBATO
Inscrit depuis 6946 Jours
Posté par GrimThorne
LEBATO, While I did enjoy the discussions that came from the topic you created, I have to say that given Bizarre's response that you seemed to have created a "Storm in a Tea Cup" over the DVD9 issue. lol

Bizarre's solution isn't one I would have chosen, but it works and the results are quite impressive.

Sometimes you have to give the developer an opportunity to explain their position before you run into a forum declaring "huge dissapointment" Although I know you weren't attacking Bizzarre, only the DVD9 format.
Well they didn't have to clear anything to me, I understood things when Ben first said it. Whatever they say, DVD9 did limit the game, and whatever they say, it is a huge disappointment for me. Of course that's not to say the game doesn't impress me anyways.
En réponse à
ItsOK_ImaNinja
ItsOK_ImaNinja
Inscrit depuis 6138 Jours
Posté par Acert93
You have no clue what you are talking about.
Parallax mapping is vertex shading intensive, not pixel.
It generates geometry and requires a tessellation unit in order for it to be processed in a single pass.
Both of these statements are incorrect and your followup obfuscates your original statements with even more foggy information.

Parallax Mapping is not pixel shader light / vertex shader heavy, and it doesn't require a tesselation unit.
In the new world of unified shaders, it's best to just call it shading - I guess.
Unified shaders is hardware resource model to adapting [essentially] math units [shaders] for a broader range of computations; current shader models still make clear distinctions between pixel shader code, vertex shader code, and geometry shader code.

Unified shaders is a hardware implimentation that has not obscured the distinction between vertex and pixel processing (or ROP processing either) in the way you are suggesting.

Virtex shading deals with vertices (geometry) and pixel shading deals with pixels. Vertex shaders can use textures (vertex shading, R2VB) to augment real geometry; pixel shaders can use textures (various bump maps like normals and parallax maps) to augment pixels to appear to represent geometry -- hence drawing flush to geometry with a parallax map will clearly show the geometry hasn't been altered.

Edit: Wiki is your friend (as it seems you don't believe me).

http://en.wikipedia.org/wiki/Displacement_mapping
Displacement mapping is an alternative technique in contrast to bump mapping, normal mapping, and parallax mapping, using a (procedural-) texture- or height map to cause an effect where the actual geometric position of points over the textured surface are displaced, often along the local surface normal, according to the value the texture function evaluates to at each point on the surface. It gives surfaces a great sense of depth and detail, permitting in particular self-occlusion, self-shadowing and silhouettes; on the other hand, it is the most costly of this class of techniques owing to the large amount of additional geometry.
http://en.wikipedia.org/wiki/Parallax_mapping
Parallax Mapping (also, Offset Mapping or Virtual Displacement Mapping) is an enhancement of the bump mapping or normal mapping techniques applied to textures in 3D rendering applications such as video games (including open source games like Sauerbraten). To the end user, this means that textures such as wooden floorboards will have more apparent depth and realism with less of an influence on the performance of the game. Parallax mapping was introduced by Kaneko, T., et al[1] in 2001.

Parallax mapping is implemented by displacing the texture coordinates at a point on the rendered polygon by a function of the view angle in tangent space (the angle relative to the surface normal) and the value of the height map at that point. At steeper view angles the texture coordinates are displaced more, and so give the illusion of depth due to parallax effects as the view changes.

Parallax mapping described by Kaneko is a single step process that does not account for occlusion. Subsequent enhancements have been made to the algorithm incorporating iterative approaches to allow for occlusion and accurate silhouette rendering[2].
Please do not pretend to be an expert on the subject. I can quote wiki too, and you are confusing yourself over terms.
Posté par Wiki
Requirements

Stable real bump mapping requires either a built in shader programming unit on the GPU (vertex shader) or a dedicated vector processing unit connected to the GPU. The GPU must also have multi-pass rendering capabilities or bump mapping will be the only type of texture effect available due to a two texture layer limit.

The Emotion Engine on the Sony PlayStation 2 is an example of handling bump mapping through a vector processing unit. Sony included 2 vector processors rather than a GPU shader that could be used for bump mapping operations. The system could calculate height maps independently while the per-pixel calculations were carried out in one of the vector processing units. Unfortunately this capability was not used much until nearly the end of the system's life cycle with games such as Hitman: Blood Money[1].

Most other systems, including the Sony PlayStation 3, Microsoft Xbox, Microsoft Xbox 360, and most PC graphics cards do bump mapping using pixel shaders.
So you see, real bump mapping uses vertex shaders. Faster methods run on pixels shaders.

You are confusing yourself over terms. You need to make clear distinctions between methods in your points.

I already explained the terms I was using and how I was using them. If you want to ignore them and all we are doing is arguing over terms.

We won't come to proper analysis if you do not define what you mean when you use terms like bump mapping. Obviously you believe it to be a pixel shader process.

I'm telling you that it is not - but also that the effect can be run on pixel shaders.

I can't explain that any simpler.
En réponse à
LEBATO - IS WRONG
LEBATO
Inscrit depuis 6946 Jours
Uh oh, time to use my new pic.

En réponse à
GriftGFX - He can also<br>ban your ass!
GriftGFX
Inscrit depuis 6825 Jours
More like, "Caution: Misinformation ahead!"
En réponse à
LEBATO - IS WRONG
LEBATO
Inscrit depuis 6946 Jours
Posté par GriftGFX
More like, "Caution: Misinformation ahead!"
Which will probably end up with things getting ugly :P
En réponse à
newbielives
Inscrit depuis 6763 Jours
Since you call a pixel shader a vertex shader because its using vector math then in your world there is only a vertex shader ? because I can't think of a time when I didn't use Vector math in a pixel shader.
Posté par ItsOK_ImaNinja
Parallax mapping is vertex shading intensive, not pixel.
Posté par ItsOK_ImaNinja
Most other systems, including the Sony PlayStation 3, Microsoft Xbox, Microsoft Xbox 360, and most PC graphics cards do bump mapping using pixel shaders.
Posté par ItsOK_ImaNinja
I prefer to call it vertex shading, as the core math is vector math. But there is nothing wrong with calling it pixel shading, as the most intensive part if pixel shading.

In the new world of unified shaders, it's best to just call it shading - I guess.

All forms of bump mapping, including parallax require vertex shading, which is basically heavier as you move towards parallax mapping.

And I see that the old play on words of confusion is at it again.

To clear things up:

Parallax Mapping = Displacement mapping
Virtual Displacement mapping = somebody just made that up - it's a dirty fast way of doing Parallax mapping, which is the same as Displacement mapping.

You could also call Virtual Displacement mapping = Virtual Parallax mapping

Now people have taken to calling parallax mapping the dirty fast way of doing displacement mapping, which you appear to be doing - but forgive me for saying, that is just wrong.

As far as I can remember:

Parallax Mapping = Displacement mapping
Parallax Mapping != Virtual Displacement mapping

Virtual Parallax Mapping = Virtual Displacement mapping

Make sense?
En réponse à
JXB
JXB
Inscrit depuis 6157 Jours
This thread got good.
En réponse à
ItsOK_ImaNinja
ItsOK_ImaNinja
Inscrit depuis 6138 Jours
Posté par newbielives
Since you call a pixel shader a vertex shader because its using vector math then in your world there is only a vertex shader ? because I can't think of a time when I didn't use Vector math in a pixel shader.
No I think you took my words out of context. That is why we have unified shaders, because from a capabilities differences pixel shaders and vertex shaders are very close to each other. It's a hop and a skip to turn one into the other.

Obviously, a pixel shader can be used to apply a pixel only affect like a screen filter for example, or even AA.

But the same can be accomplished by using a vertex shader - its all about how you approach the task.

Shaders are just specialized processors that handle certain types of tasks really well.

There's nothing that a shader can do that a normal processor can't do slower.
En réponse à
Il faut etre identifie pour participer au forum !
Patreon

135 $ de 400 $ par mois

Quoi de neuf ?
  • reneyvane

    reneyvane ...améliore l'IA de la police et le spoiler de la carte ? Ca ne dit pas à quel point tel lieu sera ou non exploité pour l'histoire ou des trucs annexes. En outre, le leak =Annulation version PS4/One ? (il y a 1 Heure)

  • reneyvane

    reneyvane @GTB: Le report de GTA6 à cause du leak est étrange ? On apprenait qu'il y aurait une héroine Latina, une police + coriace et on voyait la carte ? Finalement, l'héroine est toujours là, chaque GTA ... (il y a 1 Heure)

  • reneyvane

    reneyvane @GTB: Quand un gros éditeur ne fait + qu'une ou deux licence, c'est encore pire de ne pas pouvoir se rater car à ce stade, tu es en bourse et tes actionnaires veulent de +en+ de bénéfices. (il y a 1 Heure)

  • GTB

    GTB ...que le risque de partir sur une nouvelle ip est énorme. C'est d'ailleurs le même problème pour les Elder Scrolls et Fallout par ex. (il y a 2 Heures)

  • GTB

    GTB @reneyvane: En même tps vu la démesure des jeux R*, même en y collant tous leurs studios ça leur prend 7ans+. Et c'est un tel rouleau, une telle machine à cash... (il y a 2 Heures)

  • face2papalocust

    face2papalocust @reneyvane: Le premier jeu qui me vient en tête c'est Battelfield direct.^^ (il y a 5 Heures)

  • reneyvane

    reneyvane @face2papalocust: Tu peux citer quelques exemple ? Merci. (il y a 6 Heures)

  • Driftwood

    Driftwood Il est de nouveau possible de télécharger les vidéos sur le site. Désolé pour le mois et demi de panne. (il y a > 3 Mois)

  • Driftwood

    Driftwood Retrouvez notre review de Rift Apart dès 16h00 aujourd'hui, mais en attendant Guilty Gear -Strive- est en vedette en home ! (il y a > 3 Mois)

  • Driftwood

    Driftwood Le live commence d'ici 30 minutes, voici le lien GSY [url] et celui de Twitch [url] (il y a > 3 Mois)

  • Driftwood

    Driftwood Nouveau live sur Returnal à 14h30 aujourd'hui. (il y a > 3 Mois)

  • Driftwood

    Driftwood Le stream via Twitch, ici : [url] (il y a > 3 Mois)

  • Driftwood

    Driftwood Le stream maison ce sera ici : [url] (il y a > 3 Mois)

  • Driftwood

    Driftwood Rendez-vous à 17h00 pour un direct de 40 minutes sur Returnal (il y a > 3 Mois)

Aussi sur Gamersyde

Notre vidéo Xbox Series X de MotoGP 24

  • Mardi 14 mai 2024
  • davton

GSY Review : INDIKA

  • Jeudi 2 mai 2024
  • Driftwood

GSY Review : Endless Ocean Luminous

  • Mardi 30 avril 2024
  • davton