OSDev.org

The Place to Start for Operating System Developers
It is currently Thu Mar 28, 2024 8:32 am

All times are UTC - 6 hours




Post new topic Reply to topic  [ 105 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7  Next
Author Message
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 12:44 pm 
Offline
Member
Member

Joined: Mon Feb 02, 2015 7:11 pm
Posts: 898
Brendan isn't trying anything new, Microsoft and others have tried this before and all attempts have failed. Retained mode APIs don't work well for graphics. It simply isn't practical to abstract everything games need and still be efficient about it.

To put this in context, what Brendan wants to build is a superset of all existing game engines / graphics hardware and make it fast / efficient and better than anything that exists out there.

_________________
https://github.com/kiznit/rainbow-os


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 12:53 pm 
Offline
Member
Member
User avatar

Joined: Sat Jan 15, 2005 12:00 am
Posts: 8561
Location: At his keyboard!
Hi,

Rusky wrote:
Brendan wrote:
And as I've already pointed out multiple times (including examples in most cases); an application can provide that information by creating the "dependency graph" a certain way.
Brendan wrote:
The application provides the dependency graph in any way it wants (which includes structuring the graph to achieve portals, octrees, pre-processed occlusion, etc);
Gotcha- the application is still in charge of micromanaging the rendering process, just with an interface that's awful at it.


Wrong:
  • The application is managing but not micro-managing - the shear amount of "details that should've been abstracted but weren't" is significantly reduced.
  • The application doesn't even know if its dependency graph is being rendered (e.g. being recorded as a file and not displayed) and isn't involved in the actual rendering of the graph in any way whatsoever.
  • The interface is far less awful because the application doesn't need to worry about a lot of irrelevant puss
Basically, you're using fallacies to intentionally demean my system for non-technical reasons.

Rusky wrote:
Which is exactly what happens when you try to do anything remotely demanding with HTML, until people have to give up and implement that part of their site with Canvas or WebGL.


There are a large number of reasons why HTML/CSS (and web technologies in general) are crap. Separation of concerns is not one of them.


Cheers,

Brendan

_________________
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 1:18 pm 
Offline
Member
Member
User avatar

Joined: Wed Jan 06, 2010 7:07 pm
Posts: 792
I'm not trying to demean your system for non-technical reasons- Ready4Dis and kiznit have got it right. There are several existing systems, not just HTML, that try(ed) to do what you're doing, and all of them have these same performance problems. You have not said anything about your system that convinces me it would be any different.

On the other hand, you seem to have a habit of calling low-level details "irrelevant pus" or other such colorful hyperbole, and hinting that once you let applications see them, then all applications will have to deal with them all the time, which is just as false as your assertions about high-level interfaces. Whenever someone calls you out on this, you start arguing about why libraries and all possible replacements for them are bad. You haven't convinced me there, either.

_________________
[www.abubalay.com]


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 1:20 pm 
Offline
Member
Member
User avatar

Joined: Sat Jan 15, 2005 12:00 am
Posts: 8561
Location: At his keyboard!
Hi,

kiznit wrote:
Brendan isn't trying anything new, Microsoft and others have tried this before and all attempts have failed. Retained mode APIs don't work well for graphics. It simply isn't practical to abstract everything games need and still be efficient about it.


Do you have actual reasons for your opinion; or are you just regurgitating what you've heard without thinking about it?

kiznit wrote:
To put this in context, what Brendan wants to build is a superset of all existing game engines / graphics hardware and make it fast / efficient and better than anything that exists out there.


To put this in context; Brendan is designing a distributed system where the application/game is expected to be running on a completely different computer than the video driver, and where immediate mode would be a completely idiotic due to networking latency and bandwidth constraints; and is not trying to compete with the graphics quality you get from high-end games on Windows and/or game consoles because doing so is extremely impractical (e.g. in 20 years not one single OS developer on these forums has even attempted to get modern GPU accelerated graphics working on any video card).


Cheers,

Brendan

_________________
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 1:51 pm 
Offline
Member
Member

Joined: Mon Feb 02, 2015 7:11 pm
Posts: 898
Brendan wrote:
Do you have actual reasons for your opinion; or are you just regurgitating what you've heard without thinking about it?


I worked for Matrox for a few years writing Direct 3D and OpenGL drivers. I've also been working in video games for over 15 years and have extensive experience with over dozens of different devices spawning multiple generations (20+ years). I've been in the middle of it. What you propose doesn't sound new to me.

I've been following this discussion for some time and I think the other commenters are doing a good job already. I didn't see the point in repeating what they are already saying using my own words.


Brendan wrote:
Brendan is designing a distributed system where the application/game is expected to be running on a completely different computer than the video driver, and where immediate mode would be a completely idiotic due to networking latency and bandwidth constraints


Network concerns don't belong in a rendering stack. They belong in a game engine. Separation of concerns. So why are we discussing rendering concerns like occlusion culling/lighting at the same time we are discussing network concerns?

Brendan wrote:
(e.g. in 20 years not one single OS developer on these forums has even attempted to get modern GPU accelerated graphics working on any video card).


I have professional experience writing 3D API drivers for multiple chipsets. Not only have I attempted to get accelerated graphics to work on video cards, I've done it multiple times.

_________________
https://github.com/kiznit/rainbow-os


Last edited by kzinti on Wed Oct 14, 2015 2:09 pm, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 1:56 pm 
Offline
Member
Member
User avatar

Joined: Sat Jan 15, 2005 12:00 am
Posts: 8561
Location: At his keyboard!
HI,

Rusky wrote:
I'm not trying to demean your system for non-technical reasons- Ready4Dis and kiznit have got it right. There are several existing systems, not just HTML, that try(ed) to do what you're doing, and all of them have these same performance problems. You have not said anything about your system that convinces me it would be any different.


I can't see why there'd be a significant difference in performance; and you've consistently failed to provide any rational reason for it.

Rusky wrote:
On the other hand, you seem to have a habit of calling low-level details "irrelevant pus" or other such colorful hyperbole, and hinting that once you let applications see them, then all applications will have to deal with them all the time, which is just as false as your assertions about high-level interfaces.


The entire point of drivers (and higher levels on top of them) is to abstract hardware details, so that applications don't need to worry about things like cylinder/head/sector and can just use a "file IO" abstraction, don't need to care what the USB controllers is and can just receive keyboard/mouse events, don't need to care about specifics of a network card and can just open a socket, etc. For a general purpose OS; failing to abstract these low level details is a massive design failure - they *should* be irrelevant (from an application's perspective).

All my applications will be 3D (there will be no 2D at all anywhere on my OS); which means every application will need to deal with the 3D graphics API.

Rusky wrote:
Whenever someone calls you out on this, you start arguing about why libraries and all possible replacements for them are bad. You haven't convinced me there, either.


Nobody (including me) has mentioned libraries or possible replacements for them in this entire (6+ pages) discussion.


Cheers,

Brendan

_________________
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 2:01 pm 
Offline
Member
Member
User avatar

Joined: Wed Jan 06, 2010 7:07 pm
Posts: 792
That's exactly my point- there won't be a significant difference in performance between your system and other systems like it that are also incapable of handling demanding scenes. You're the one proposing this system, it's your job to prove that it's actually different from the rest.

My libraries comment refers to previous threads on similar topics. Again, just because an application can see the low-level details, does not mean it must always deal with them. You're still committing that fallacy.

_________________
[www.abubalay.com]


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 2:27 pm 
Offline
Member
Member
User avatar

Joined: Sat Jan 15, 2005 12:00 am
Posts: 8561
Location: At his keyboard!
HI,

kiznit wrote:
Brendan wrote:
Do you have actual reasons for your opinion; or are you just regurgitating what you've heard without thinking about it?


I worked for Matrox for a few years writing Direct 3D and OpenGL drivers. I've also been working in video games for over 15 years and have extensive experience with over dozens of different devices spawning multiple generations (20+ years). I've been in the middle of it. What you propose doesn't sound new to me.


Cool.

kiznit wrote:
I've been following this discussion for some time and I think the other commenters are doing a good job already. I didn't see the point in repeating what they are already saying using my own words.


Ready4Dis raised several issues; I explained how they'd be done, and now he seems to have no more issues. Rusky raised several issues (most that were already raised by Ready4Dis) and I (re)explained how they'd be done, and now he seems to have no more issues (other than an argumentative demeanour and an unfulfilled desire to be "right").

kiznit wrote:
Brendan wrote:
Brendan is designing a distributed system where the application/game is expected to be running on a completely different computer than the video driver, and where immediate mode would be a completely idiotic due to networking latency and bandwidth constraints


Network concerns don't belong in a rendering stack. They belong in a game engine. Separation of concerns. So why are we discussing rendering concerns like occlusion culling/lighting at the same time we are discussing distributed rendering?


Distributed *anything* involves network concerns by definition. We were discussion occlusion culling/lighting because some people thought an immediate mode renderer can't do these things efficiently.

kiznit wrote:
Brendan wrote:
(e.g. in 20 years not one single OS developer on these forums has even attempted to get modern GPU accelerated graphics working on any video card).


I have professional experience writing 3D API drivers for multiple chipsets. Not only have I attempted to get accelerated graphics to work on video cards, I've done it multiple times.


Have you attempted to get modern GPU accelerated graphics working on your own OS? My guess is that your answer will be something like "no, not yet".


Cheers,

Brendan

_________________
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 2:36 pm 
Offline
Member
Member

Joined: Mon Feb 02, 2015 7:11 pm
Posts: 898
Brendan wrote:
Distributed *anything* involves network concerns by definition. We were discussion occlusion culling/lighting because some people thought an immediate mode renderer can't do these things efficiently.


I guess I got confused by that tangent. I was under the impression you proposed rendering graphics over the network by describing the scene / dependencies between rendering elements. This cannot be done efficiently with a rendering API. The way this is done efficiently in games is to synchronize elements of the game simulation over the network. No rendering anywhere near the wires.

Brendan wrote:
Have you attempted to get modern GPU accelerated graphics working on your own OS? My guess is that your answer will be something like "no, not yet".


I will never do such a thing. My "OS" is just a hobby project on the side that I work on from time to time to relax and exercice some programming muscles. Repeating at home what I am already doing at work (distributed game simulations / graphics) is the last thing I want.

I do not understand what is the argument you are trying to make here? Am I losing all credibility because I haven't added 3D accelerated graphics to my toy project? Have you?

_________________
https://github.com/kiznit/rainbow-os


Last edited by kzinti on Wed Oct 14, 2015 3:01 pm, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 2:45 pm 
Offline
Member
Member
User avatar

Joined: Sat Jan 15, 2005 12:00 am
Posts: 8561
Location: At his keyboard!
Hi,

Rusky wrote:
That's exactly my point- there won't be a significant difference in performance between your system and other systems like it that are also incapable of handling demanding scenes. You're the one proposing this system, it's your job to prove that it's actually different from the rest.


Let's try another approach then. What are the main reasons why other systems that used retained mode rendering were incapable of handling demanding scenes? Was it a problem with the way the APIs were designed/implemented (and not with retained mode itself)?

Rusky wrote:
My libraries comment refers to previous threads on similar topics. Again, just because an application can see the low-level details, does not mean it must always deal with them. You're still committing that fallacy.


The communication costs between separate processes (potentially running on separate computers) is my largest concern here. Just because an application can see the low level details doesn't mean it can get those low level details across 100 MHz ethernet in real-time; and libraries won't change that.


Cheers,

Brendan

_________________
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 3:27 pm 
Offline
Member
Member

Joined: Mon Feb 02, 2015 7:11 pm
Posts: 898
Brendan wrote:
Let's try another approach then. What are the main reasons why other systems that used retained mode rendering were incapable of handling demanding scenes? Was it a problem with the way the APIs were designed/implemented (and not with retained mode itself)?


The problems with retained mode APIs are intrinsic.

Out of the top of my head:

1) API complexity / Leaky abstraction axis: either you have a complex API that does everything for everyone or you have a simple API that doesn't handle everything. Pick a point on that axis: it's never perfect.
2) CPU load: talking to the GPU hardware is a fixed cost whether you use RM or IM. Anything RM does on top requires extra CPU cycles.
3) RM APIs do just that: they retain data. This means they use more memory.
4) Memory bandwidth: you need to copy the user's data behind the RM API.
5) Not future-proof: new hardware comes out and doesn't work with your RM abstraction (an example of this was the PowerVR with its tile-based rendering).
6) Not future-proof: new rendering engine algorithm comes along and doesn't map to your API (I guess thats leaky abstraction again).

I am sure there is more, but it's a starting point.

_________________
https://github.com/kiznit/rainbow-os


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 4:02 pm 
Offline
Member
Member
User avatar

Joined: Sat Jan 15, 2005 12:00 am
Posts: 8561
Location: At his keyboard!
Hi,

kiznit wrote:
Brendan wrote:
Distributed *anything* involves network concerns by definition. We were discussion occlusion culling/lighting because some people thought an immediate mode renderer can't do these things efficiently.


I guess I got confused by that tangent. I was under the impression you proposed rendering graphics over the network by describing the scene / dependencies between rendering elements. This cannot be done efficiently with a rendering API. The way this is done efficiently in games is to synchronize elements of the game simulation over the network. No rendering anywhere near the wires.


I propose that the application sends commands over the network to create and then maintain a dependency graph; and the video driver on the other machine renders the dependency graph. Please note that I've only described a simplified version of my system in this topic; and some aspects that have been discussed elsewhere have been omitted to avoid complicating the discussion further.

If you're saying this will be bad (e.g. can't be done efficiently) without providing any reasons why you think it will be bad; then I will return the favour by saying you're wrong without giving any reasons why you're wrong. Hopefully you're smart enough to appreciate the futility of failing to provide reasons for your assertions.

kiznit wrote:
Brendan wrote:
Have you attempted to get modern GPU accelerated graphics working on your own OS? My guess is that your answer will be something like "no, not yet".


I will never do such a thing. My "OS" is just a hobby project on the side that I work on from time to time to relax and exercice some programming muscles. Repeating at home what I am already doing at work (distributed game simulations) is the last thing I want.

I do not understand what is the argument you are trying to make here? Am I losing all credibility because I haven't added 3D accelerated graphics to my toy project? Have you?


You implied that I'm trying to build a system that's faster/more efficient than anything that exists (your first post in this topic). I denied this and said that it's unrealistic to expect a hobby OS to have full GPU support that would be required to do this (given that nobody has managed to come close in 20+ years). You replied saying that you have professional experience writing 3D API drivers for multiple chipsets (implying in some way that I'm wrong about the feasibility of a hobby OS having full GPU support). I asked if your hobby OS has full GPU support (suspecting that even for someone who has professional experience writing 3D API drivers for multiple chipsets its still unreasonable to expect a hobby OS to have GPU support); and you confirmed my suspicion.


Cheers,

Brendan

_________________
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 4:18 pm 
Offline
Member
Member

Joined: Mon Feb 02, 2015 7:11 pm
Posts: 898
Brendan wrote:
You replied saying that you have professional experience writing 3D API drivers for multiple chipsets (implying in some way that I'm wrong about the feasibility of a hobby OS having full GPU support)


Mmm no. I wasn't implying any such thing. I was merely replying to your comment here:

Brendan wrote:
Do you have actual reasons for your opinion; or are you just regurgitating what you've heard without thinking about it?


In fact, the only reason I engaged in this conversation is because I respect you based on your posts here on these forums. You have shown that you are smart, have a lot of experience and think things through. When someone like you start talking about how he wants to change graphics rendering, I am interested in hearing what this is about and understanding it. So far, I have a hard time understanding what you are proposing. Hence why I am posting at all.

_________________
https://github.com/kiznit/rainbow-os


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 4:20 pm 
Offline
Member
Member
User avatar

Joined: Sat Jan 15, 2005 12:00 am
Posts: 8561
Location: At his keyboard!
Hi,

kiznit wrote:
1) API complexity / Leaky abstraction axis: either you have a complex API that does everything for everyone or you have a simple API that doesn't handle everything. Pick a point on that axis: it's never perfect.


I pick a point on that axis that is achievable given the "no GPU support" and networking constraints. Are you suggesting that I should pick a point on that axis that is not achievable given these constraints?

kiznit wrote:
2) CPU load: talking to the GPU hardware is a fixed cost whether you use RM or IM. Anything RM does on top requires extra CPU cycles.


Forget about GPU hardware. We'll probably all be using something closer to Xeon Phi well before my OS project has any support for GPU.

kiznit wrote:
3) RM APIs do just that: they retain data. This means they use more memory.


Using more memory is far more practical than dragging all that data across the network every frame. Note that half of the data (meshes, textures) will be loaded from disk by the video driver and won't go anywhere near the application.

kiznit wrote:
4) Memory bandwidth: you need to copy the user's data behind the RM API.


Same as above (a copy beats distributed shared memory).

kiznit wrote:
5) Not future-proof: new hardware comes out and doesn't work with your RM abstraction (an example of this was the PowerVR with its tile-based rendering).
6) Not future-proof: new rendering engine algorithm comes along and doesn't map to your API (I guess thats leaky abstraction again).


Wrong. Higher level interfaces are less hardware dependent, and less likely to cause API issues.

kiznit wrote:
I am sure there is more, but it's a starting point.


Perhaps.


Cheers,

Brendan

_________________
For all things; perfection is, and will always remain, impossible to achieve in practice. However; by striving for perfection we create things that are as perfect as practically possible. Let the pursuit of perfection be our guide.


Top
 Profile  
 
 Post subject: Re: Graphics API and GUI
PostPosted: Wed Oct 14, 2015 4:22 pm 
Offline
Member
Member

Joined: Mon Feb 02, 2015 7:11 pm
Posts: 898
Brendan wrote:
I propose that the application sends commands over the network to create and then maintain a dependency graph; and the video driver on the other machine renders the dependency graph. Please note that I've only described a simplified version of my system in this topic; and some aspects that have been discussed elsewhere have been omitted to avoid complicating the discussion further.

If you're saying this will be bad (e.g. can't be done efficiently) without providing any reasons why you think it will be bad; then I will return the favour by saying you're wrong without giving any reasons why you're wrong. Hopefully you're smart enough to appreciate the futility of failing to provide reasons for your assertions.


Are you targeting games with this? And/or are games going to be running over this networked system? If that is the case, then my answer is that it is orders of magnitude more efficient to synchronize the game simulation then it is to send the rendering graphs over and over. That's how game engines work. That's because it is the most efficient way.

_________________
https://github.com/kiznit/rainbow-os


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 105 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7  Next

All times are UTC - 6 hours


Who is online

Users browsing this forum: No registered users and 27 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group