Why you should never use deferred shading

  Рет қаралды 9,966

bazhenovc

bazhenovc

8 ай бұрын

Personal and strongly opinionated rant about why one should never use deferred shading.
Slides: docs.google.com/presentation/...
Links:
github.com/zeux/meshoptimizer
vkguide.dev/docs/gpudriven/gp...
vkguide.dev/docs/gpudriven/co...
newq.net/dl/pub/SA2014Practica...
advances.realtimerendering.co...
gpuopen.com/learn/dcc-overview/
store.steampowered.com/hwsurv...
fgiesen.wordpress.com/2011/07...

Пікірлер: 56
@luukasmus9213
@luukasmus9213 9 күн бұрын
I have to say that this is an excellent presentation, especially for such a small channel. Straight to the point and clearly defined arguments. I hope to see more stuff from you in the future :)
@doltBmB
@doltBmB 6 ай бұрын
tiled rendering with lots of onscreen lights was often touted as a benefit of deferred, but that relies on a false assumption about how light works, very rarely will you have lots of small point lights with a small radius, perhaps street lamps in a city like GTA. but most lights are going to throw far, likely across the entire screen in order to look natural. To keep the benefit of tiled rendering, light radius and falloff are artificially capped to a small radius and a harsh edge, which looks very artificial, if combined with gamma correction it will make the falloff look even harsher and even more unnatural. really very few actual scenes fit the way the tech demos with hundreds of lights were constructed.
@user-zm5zq2bw9y
@user-zm5zq2bw9y 8 ай бұрын
Solid presentation! Looking forward to more.
@tadeohepperle7514
@tadeohepperle7514 8 күн бұрын
Very information-dense presentation, thank you!
6 ай бұрын
Awesome presentation. This will gonna help on my hobby game engine.
@BenjaminRosseaux
@BenjaminRosseaux 8 ай бұрын
Great video, Kirill. I really appreciated your deep dive into the complexities of deferred and forward renderers. But I also have a question: I'm eager to hear your detailed perspective on the use of depth prepass, especially in the context of intermediate-based GPUs. In recent discussions, especially on platforms like Twitter/X, there seems to be a divided opinion among GPU developers regarding its necessity. Some argue that the benefits have become too marginal to justify its use even on current intermediate-based GPUs even on forward rendering, and point out the fact that it is disadvantageous on tile-based GPUs due to the inherent principles of tile-based rendering utilized in mobile GPUs (which is out of the question anyway, since it is a fact). On the other hand, there is a section of the GPU development community that staunchly supports the use of depth prepass on immediate-based GPUs, emphasizing its role in minimizing or even avoiding overdraw during each subsequent geometry rendering pass. They argue that it fosters a more efficient rendering process. Personally, I align with the latter viewpoint. I find that using depth prepass is not only beneficial for reducing or avoiding overdraw but also plays a crucial role in enhancing features such as SSAO, early motion vectors, and so forth, before the actual main geometry pass. In my own engine (as a part of my PasVulkan project), which uses the Forward+ rendering technique coupled with depth prepass, bindless all-in-one-go-per-pass techniques and so forth, I have observed significant benefits in this matter. I'm curious to know where you stand on this matter and would appreciate your detailed opinion.
@bazhenovc754
@bazhenovc754 8 ай бұрын
If you are not running on a tile-based deferred GPU (TBDR) then you kinda need a depth prepass in a forward renderer, you can try turning it off every now and then and see what happens (I've tried it a few times and it always was a big performance hit). Keep in mind that not all tiled GPUs are TBDR - there are also tile-based immediate GPUs (TBIR) and they DO need a depth-prepass. Personally I'm not a fan of doing early motion vectors in a depth prepass, you are losing the benefits of a fast depth-only rendering if you do that. Like I've mentioned in the video, a true depth-only pass without a pixel shader is a fraction of the cost because GPUs have a separate way of handling that and it gets disabled if you add a pixel shader to write motion vectors. To make the most use of the depth prepass you should try rendering all opaque objects first without a pixel shader, then render everything with an alpha test on top of it. Alpha-tested geometry won't get that fast rendering either but there's no way around it, if you need alpha testing you pay for it.
@BenjaminRosseaux
@BenjaminRosseaux 8 ай бұрын
@@bazhenovc754 Okay, I should have explained that better. 🙂After my depth-only buffer depth-prepass without color-writes, a sequence of few draw calls (or just one big multi indirect) with activated color-writes (for motion vectors and normals) directly follows, but still in the same "depth-prepass" renderpass from the view of my frame/render-graph implementation. For my engine, I took a lot of design ideas from Doom Eternal.
@bazhenovc754
@bazhenovc754 8 ай бұрын
@@BenjaminRosseaux Yeah that makes sense, I misunderstood what you initially wrote. You could write motion vectors from the main forward pass too, I'm not sure if it's very useful to have them early.
@aeterosofficial
@aeterosofficial 7 ай бұрын
Очень интересная презентация. Спасибо, есть о чём подумать.
@myxsys
@myxsys 3 ай бұрын
Thanks for the presentation. Am not a graphics programmer but an Unreal Engine noobie learning tech art. I noticed that when I enabled forward renderer + fxaa, the visuals improved greatly plus I got about 50 to 60 fps running a basic level on a Ryzen APU. Am glad to see forward renderer being recommended despite what the unreal docs say.
@bazhenovc754
@bazhenovc754 2 ай бұрын
They've added a forward renderer because their deferred renderer didn't work in VR (too slow), it's pretty good but there are some features missing or not supported.
@myxsys
@myxsys 2 ай бұрын
@@bazhenovc754I always assumed forward rendering has always been there even before UE 4
@FlippingLuna
@FlippingLuna Ай бұрын
For mobile...At least mobile forward support custom data which is key to stylized/toon renderer, while mobile deferred is not@@bazhenovc754
@slimsag1337
@slimsag1337 23 күн бұрын
Interesting talk, thank you for sharing it!
@trider_12
@trider_12 8 ай бұрын
Great presentation. There's a small typo on the slide "Optimized deferred renderer" - Normal should be G32 and Emissive should be B32.
@MichaelPohoreski
@MichaelPohoreski 15 күн бұрын
10:00
@yasserarguelles6117
@yasserarguelles6117 8 ай бұрын
I'm curious how you feel about visibility buffers, it is fundamentally deferred shading with 32bits per pixel (64 if we're counting depth) and does also address some of the flexibility concerns since you can make different pieces of the screen draw with different shaders, textures, attributes, etc.
@bazhenovc754
@bazhenovc754 8 ай бұрын
The visibility buffer has its own pros and cons and it's probably a good topic for a separate video. Overall I like it, but I think that most games won't really benefit from it unless the art direction wants extremely dense and detailed geometry.
@stoopdapoop
@stoopdapoop 8 ай бұрын
Nice presentation. I've not yet done much work on a modern forward renderer, but I'm assuming that register pressure in the PS is higher on average when using forward. If true, is it enough of an issue that it affects latency hiding and bandwidth usage?
@bazhenovc754
@bazhenovc754 8 ай бұрын
Yes the register pressure is higher in a forward renderer, if you're having issues with latency hiding you can use scalarization to help with that. In general based on my previous experience bandwidth savings make up for the difference in most cases.
@mioeu5399
@mioeu5399 3 ай бұрын
Thanks for great in-depth material man! One day I might be able to grasp everything you say but not today unfortunately. What do you think about deferred shading on modern mobile devices when having open world 3D environment but with only few local lights? Would your advice still be so radical against deferred? Thanks.
@bazhenovc754
@bazhenovc754 2 ай бұрын
Yes I would 🙂Bandwidth is very expensive on mobile.
@Weaver_Games
@Weaver_Games 2 ай бұрын
I've often felt like an industry outcast for being so largely against deferred rendering. I'm not saying it never has a place but I feel like studios now just default to it without understanding the substantial drawbacks.
@StevoPero
@StevoPero 3 ай бұрын
I tried it but I am having a problem I am in a decent pc but I can't enable it I have added a PBR shader and also it has DX12
@wojtsterna
@wojtsterna 8 ай бұрын
Permutations reduction is a strong case for a deferred renderer. If you have many complex materials deferred renderer can be a better choice. Overall, I don't have a strong opinion on whether a forward or deferred is "better". They both have their merits and drawbacks.
@bazhenovc754
@bazhenovc754 8 ай бұрын
There are better ways to reduce the amount of shaders that you have, decals being one of them. If your art team does not have to create a unique shader every time they want to have some small scratches on the surface or other minor details then you won't have the shader explosion problem in the first place.
@zdspider6778
@zdspider6778 2 ай бұрын
20:27 "Forward shading still produces a g-buffer". No, it doesn't. There's no "g-buffer" _at all_ in forward rendering. 🤨 Are we talking about the same thing?
@Patapom3
@Patapom3 8 ай бұрын
Nice presentation. However, you're not addressing a big issue with forward renderers : shaders combinatory explosion! I worked on Dishonored 2 a few years ago, we were using a modified version of Id Software's idTech 5 engine and at the very end of production (circa 2016) we were compiling about 50,000 shaders (distributed compiling of course) because of all the variations (transparent, cutoff, decals, translucency, all the kinds of BRDFs and so on and so on). It took *AGES* to compile and it was a big source of headaches and delays in production, as well as a nightmare to optimize! With deferred, you only have to handle a couple thousands of variations, it takes at most a few minutes to compile, and it uses a unified lighting pipeline that also makes shaders smaller and easier to maintain...
@bazhenovc754
@bazhenovc754 8 ай бұрын
Dishonored 2 is in the top 5 of my most favourite games of all time, I absolutely loved it! I'd like to hear more about your shader explosion issue if you have the time, can you pinpoint what exactly caused it in the first place? My general thoughs on this is that if you have a good decal system like in idTech5 then you can use decals most of the time when you need various surface variations and your art team doesn't have to create a new shader every time they want a slightly different scratch on the surface and they can just use decals for these small details. Of course you still have gameplay-specific shaders, but there shouldn't be 50k of them right, Doom managed to ship with like 100-ish shaders in total and visually it looks amazing.
@doltBmB
@doltBmB 6 ай бұрын
sounds like a self control problem, there is nothing about forward that says you have to use a billion shaders, deferred simply imposes the limitation
@igipson
@igipson 8 ай бұрын
You do not mention VGPR usage, and occupancy. These factors can play a big role in the comparison
@bazhenovc754
@bazhenovc754 8 ай бұрын
Yeah VGPR pressure is generally higher in a forward renderer on average - this basically trades VGPR pressure for bandwidth and bandwidth is generally more valuable in my opinion, especially if you're porting to VR or mobile. I've seen a lot of deferred-to-forward ports where forward consistently outperformed deferred without any actual shader logic changes. It's also worth noting that the added VGPR pressure is coming from the added light processing loop and lighting model evaluation, which is typically not that much overhead. Crazy complex node-based shaders are often a much bigger problem and they also impact deferred shading in a similar fashion. Also in a forward renderer it is easier to manage and scale it down where needed, for instance with a shader LOD system that uses a simplified lighting model for distant objects or even having a simplified lighting for "non-important" objects on a low graphics preset - in a deferred renderer you will need to branch on a g-buffer flag to evaluate those and branching doesn't reduce the allocated VGPR, the compiler will still allocate for the worst case of both paths and it would impact the entire shading pass (assuming that you light everything in CS and not with drawing geometry that samples the g-buffer). At the same time it's also easier to scale it up, you can have a more fancy and expensive lighting model for specific key objects in the game and they won't impact the performance of your entire shading pass.
@bazhenovc754
@bazhenovc754 8 ай бұрын
On a side note, occupancy by itself is not the end goal, the goal is not to stall on memory loads and you have other tools to deal with that. Having high occupancy can even reduce your overall performance if you have multiple work batches invalidating the cache all the time.
@saniel2748
@saniel2748 5 ай бұрын
Shame you didn't touch on topic of having lots of cut out geometry, like rendering forests. You can't just not use pixel shader on those, although you could set color mask to 0 I know that unity's book of the dead demo still had massive benefit from using prepass even with deferred rendering. Still, I also read in "Geometry Pipeline in CallOfDuty" that forward kinda sucks for cut out geometry?
@bazhenovc754
@bazhenovc754 2 ай бұрын
You only need to render prepass with the alpha clip enable, but render it after all opaque. Then the main pass can be rendered fully opaque with earlyZ, the depth buffer will naturally have gaps where texture alpha was 0. The prepass with a pixel shader will be more expensive and I don't think this is a solvable problem. You can optimize geometry, i.e. www.humus.name/index.php?ID=266 to reduce that overhead.
@zdspider6778
@zdspider6778 2 ай бұрын
Another "con" is that you can't use MSAA in deferred rendering. Only post-processing AA like: FXAA, TAA, SMAA, CSAA. Because the lighting calculations are only done ONCE for the "top most" visible pixels, not for their "antialiased" bastardized pixels, lol. While in forward rendering you can. So if you're a fan of MSAA (which is a _hardware feature_ since like the 90's or early 2000's), then forward rendering is the way. But keep in mind that MSAA also comes with its own limitations, like it only applies AA to the _geometric_ part of the triangles. It does absolutely nothing for the inside of the triangle, so if a texture is noisy or the specular is noisy (because the normal map contains too much detail and "reflects" light at sudden sharp angles), then you ARE gonna notice the aliasing and it's gonna bother you. And a lot of people seem to hate TAA, for some reason... There's even "r/FuckTAA" - _a subreddit dedicated to discussing the plague of blurry anti-aliasing methods that are ruining the visuals of modern video games._
@bazhenovc754
@bazhenovc754 2 ай бұрын
I'll copy my reply about MSAA from my own comment: MSAA is not better than TAA for several reasons: 1. Performance hit is too much on "modern" art - MSAA works extremely poorly when triangle density is high, in worst case with 4x MSAA you are hit with 16 times more pixel shader invocations if your triangle overlaps a lot of adjacent pixel centers, this can easily quadruple your frame time, especially if you have complex shaders. MSAA compression is also designed for large triangles, it doesn't work if your art direction needs high triangle density. This assumes forward renderer, with deferred you get all these issues on top of crazy bandwidth increase which is just not practical. 2. It does not address specular aliasing, MSAA works by computing a coverage mask for subsamples and stores the result of your pixel shader invocation for each affected subsample. It does not shade each individual subsample, it only interpolates the resulting colors. It's not supersampling, because supersampling would actually invoke the pixel shader for each subsample instead of interpolating it. There is another way to reduce shader aliasing by filtering your roughness and normal maps, this is called "von Mises Fischer" or "vMF" filtering, it doesn't completely remove specular aliasing but helps a lot with it. Some games do VMF with combination of something like non-temporal SMAA and I think it's a pretty good compromise (and doesn't need motion vectors), but you need a rather complex art production pipeline and someone who enforces art guidelines. This is often very expensive to do unless you have a strong tech art discipline in your team. AI TAA is not really that bad, give it a try. XeSS/DLSS have almost zero ghosting and really good image clarity and stability, they only struggle when there's a lot of translucency and particles on the screen. Now if you have a VR game your situation is very different, you cannot use TAA in VR at all because people will start throwing up when playing your game, so your only option is MSAA or SMAA. This severely limits what art direction your game can have and increases art production costs/time. And you pretty much have to implement a vMF pipeline in your project. FXAA is really not an option nowadays, it needs to retire with honor and dignity.
@zdspider6778
@zdspider6778 2 ай бұрын
I think you forget one important aspect of forward vs deferred: *depth pre-pass.* _Edit: which you mention at __24:57_ 😅 With a forward render, you really do need an initial "pre-pass" only for depth. Meaning you have to render ALL your meshes to the depth buffer (using an empty fragment shader). This incurs an extra cost. While with a _deferred_ renderer you don't really need one. Not really. I mean, you CAN if you wanted to, but it's often not used. If you choose a forward renderer and you skip the depth pre-pass (and you don't sort your meshes), you risk running (potentially) expensive lighting calculations for the fragments that the depth buffer will discard, thereby throwing away whatever work the GPU did. This is the entire reason why deferred shading was invented in the first place! 😄 I'm not necessarily saying that deferred is better. It depends entirely on your scene. Is it a "corridor" type shooter? Is it an open-world scene with lots of things behind other things? How "deep" is your scene, and can you cull those meshes on the CPU (or GPU)? These are the questions you should be asking when trying to choose between forward or deferred. Another important questions is: how many lights do you want? Because deferred easily supports _tens of thousands_ since they're basically like stamps drawn in 2D on the color buffer.
@bazhenovc754
@bazhenovc754 2 ай бұрын
This was discussed in the video, 2 pass forward is generally faster than deferred. The cost of having an extra depth pass in a modern optimized forward renderer is lower than the cost of using that much extra bandwidth in a deferred renderer, especially so if you use the "stamps in 2D on the color buffer" approach - this will waste a metric ton of bandwidth. In order to for a deferred renderer to compete with forward at all you need to use a tiled deferred shading with a compute shader that caches gbuffer samples in TGSM.
@zdspider6778
@zdspider6778 2 ай бұрын
22:11 _(regarding SSR)_ "You cannot do this with deferred shading because you need the normal and roughness". I think you got that BACKWARDS, chief. 😆 You can't do that in a *_forward_* renderer, because you don't have the roughness as a separate render target. But you totally CAN with deferred! "Deferred" means putting it off (or "deferring" it) to a later date during the frame rendering timeline, so that you do the (potentially) expensive lighting calculations _ONCE_ per pixel.
@bazhenovc754
@bazhenovc754 2 ай бұрын
You need to work on your listening comprehension, chief 🙂You are taking phrases out of context and constructing an imaginary windmill to attack, the phrase "cannot do this" does not refer to SSR and I explained earlier in the video what a forward renderer is in the context of this presentation.
@L1uBan
@L1uBan 8 ай бұрын
This talk clearly targets immediate GPUs. You make a lot of statements that are hard to defend in Tiled-Based architectures.
@bazhenovc754
@bazhenovc754 8 ай бұрын
Can you elaborate which statements? I admit that most of my experience is with consoles and PC, although I did work a bit with various mobile GPUs. There is TBDR and TBIR, you don't need a depth prepass on a TBDR because the HW already deals with overdraw for you with FPK/HSR, so a depth prepass is just not doing anything useful. But you still need it on a TBIR if you have a forward renderer, all my other arguments should still apply though? I know that you can try to keep the G-Buffer in the tile memory and that mitigates a lot of bandwidth issues, but if you need the G-Buffer for postprocessing (SSR or anything that needs arbitrary sampling of the render target) then you're forced to move it off-tile anyway or scale down and make other concessions (same issue with an on-tile depth buffer - if you have anything going on with your postprocessing you can't really keep it on-tile because you'll need it later). Not to mention that on-tile memory is a scarce resource and there might not be enough of it for a fat G-Buffer. So I still don't see any distinct advantages of deferred renderer over the forward renderer even on TBDR - on these types of GPUs forward renderer at worst shouldn't perform worse than a deferred renderer but it comes with a lot of flexibility. And from what I've seen, all TBDR vendors recommend using a forward renderer anyway.
@L1uBan
@L1uBan 8 ай бұрын
Hi @@bazhenovc754, great talk by the way, I forgot to mention in my last comment xD. As you pointed out, things like mobile GPUs having some sort of HSR which makes the depth prepass suboptimal, but you still need the depth for things like the SSAO mask generation. To be able to stay in tile memory (you should be able to get more than enough for the GBuffer data) mitigates a lot of bandwidth, not entirely as you will still have to end up writing once to let later passes use the GBuffer but at least you will stop doing multiple writes/loads. Also, some of the comments focus a lot in the assumption of Compute for everything, which is true for Desktop and Console territory but overall on mobile maximizing the use of fragment shaders is still the general advice. So, overall I agree a Forward renderer, as long as you have a really limited amount of lights is going to be the most efficient approach. Unfortunately, modern graphics tend not to align well with this approach as you might need access to material information later in the frame (i.e screen probes based GI techniques, reflections ...) which force people to end up having to write some sort of GBuffer anyway.
@Kickin0u0in0the0nut
@Kickin0u0in0the0nut 5 ай бұрын
Do you feel like spending time trying to improve deferred renders is a fruitless cause especially with the advent of ray tracing I feel like there's no justification to implement new deferred renderers, I feel like ray tracing does a better job of handling thousands of lights in a small scene or in a large scene then it deferred render and most of the times when I think of engines that use deferred renders they already have high minimum cost to run the engine engines I feel like it would be more beneficial if we focus on making ray tracing more available via lower and hardware and different ray tracing algorithms
@bazhenovc754
@bazhenovc754 5 ай бұрын
I don't think you can do a lot of improvements for deferred shading, unless you start heavily compressing the data you can't really reduce the bandwidth and compression is always at the expense of quality. I have a mixed feeling about ray tracing in general, I understand the appeal but at the same time I feel like ray tracing needs extremely heavy temporal component that makes it look bad in motion most of the time. ReSTIR seems to be a way to go (the biased variants) and I don't think you need deferred shading for that either.
@bigeddyspaghetti6681
@bigeddyspaghetti6681 3 ай бұрын
Well this isn’t good as Minecraft is gonna be using deferred rendering 😢
@CharlesVanNoland
@CharlesVanNoland 5 ай бұрын
When did people start calling them "deck-ullz"? It's always been "dee-kal" where "kal" rhymes with "pal" or "Cal" in "California". This is the second time this week I've seen a gfx programmer say it "deck-ull" on KZbin. It's even "dee-kal" on dictionary sites (literally) and hundreds of older videos. Why is the pronunciation changing suddenly? Have people just only seen the word any never heard it said before somehow, in this day and age of streaming video? It reminds me of watching game reviewers saying "lin-neer" for the word "linear" because they've only read it and never heard it, and they see the word "near" in it and automatically assume it's a 2-syllable word instead of the 3-syllable word it's always been since before they came along and mis-read it.
@bazhenovc754
@bazhenovc754 5 ай бұрын
I used both "deck-ull" and "dee-kal" pronunciations in the video to offend as many gfx programmers as possible.
@user-dg4yb3us8o
@user-dg4yb3us8o 12 күн бұрын
We can't even make a proper sky for VR in UE5 now. It's all "lumen lumen lumen nanite nanite" and such poo. They push everyone to try and make AAA games when UE4 was actually something for small developers and teams as well. We can't all be Ubisoft. I was working all day having a blast with UE4 and now with 5 I feel like I almost quit. Old techniques don't work well anymore and new techniques also don't work well...
@zxcaaq
@zxcaaq 7 ай бұрын
what about Foward+ is this technique better than Forward+?
@fu5ha_edits
@fu5ha_edits 7 ай бұрын
The kind of forward renderer discussed in this video would be firmly in the “Forward+” category already. Depth/normal/etc prespasses, occlusion, clustered lighting and decals… all of these are “forward+” things
@user-cs7ib3ho1l
@user-cs7ib3ho1l 5 ай бұрын
Nice video but disliked for the horrific microphone, so much breath.
@bazhenovc754
@bazhenovc754 2 ай бұрын
I bought a new expensive one, next video should be better.
When Optimisations Work, But for the Wrong Reasons
22:19
SimonDev
Рет қаралды 765 М.
ISSEI funny story😂😂😂Strange World | Pink with inoCat
00:36
ISSEI / いっせい
Рет қаралды 25 МЛН
ШЕЛБИЛАР | bayGUYS
24:45
bayGUYS
Рет қаралды 584 М.
The World's Fastest Cleaners
00:35
MrBeast
Рет қаралды 131 МЛН
Эта Мама Испортила Гендер-Пати 😂
00:40
Глеб Рандалайнен
Рет қаралды 9 МЛН
How Big Budget AAA Games Render Clouds
10:45
SimonDev
Рет қаралды 251 М.
REAC 2023 DAY 1 Modern Mobile Rendering @ HypeHype
1:10:40
Rendering Engine Architecture Conference
Рет қаралды 8 М.
Why is Raylib becoming so popular?
9:24
Chris_PHP
Рет қаралды 10 М.
The Glitch that Broke Link's Cel Shading
35:10
Jasper
Рет қаралды 545 М.
I Rewrote This Entire Main File // Code Review
16:08
The Cherno
Рет қаралды 86 М.
An introduction to Raymarching
34:03
kishimisu
Рет қаралды 107 М.
Volume Tiled Forward Shading
7:57
Jeremiah van Oosten
Рет қаралды 17 М.
Why you should _still_ never use deferred shading (follow-up)
8:09
How do Major Video Games Render Grass?
9:33
SimonDev
Рет қаралды 330 М.
Deferred Shading [Shaders Monthly #14]
31:35
GSN Composer
Рет қаралды 813
Эффект Карбонаро и бумажный телефон
1:01
История одного вокалиста
Рет қаралды 705 М.
How about that uh?😎 #sneakers #airpods
0:13
Side Sphere
Рет қаралды 8 МЛН
Рекламная уловка Apple 😏
0:59
Яблык
Рет қаралды 802 М.
What % of charge do you have on phone?🔋
0:11
Diana Belitskay
Рет қаралды 288 М.