Display Lists versus VBOs for static data on ATI/NVIDIA hardware?

Arun

Unknown.
Moderator
Legend
As I said in another thread, I'm currently into the process of improving - and thus also optimizing - a DX7-era engine (released in 2002) for a modding project. Obviously, we use a much bigger polygon budget than the original game did, and the problem is that it doesn't seem to manage to keep up, even on my 6800GT. And since we're targetting GeForce4 Ti4200/Radeon 8500+ hardware as a minimum (even though we'll have a fallback for pre-shading hardware, this is just a performance restriction), that's a bit of a problem obviously.

Apparently, the current code is horribly CPU-limited at least when it comes to terrain rendering (with no real non-drawing overhead for terrain). My current analysis is that the CPU overhead is coming from the index buffer not being in a VBO, even though the vertex data is. I would at least assume the drivers not to be tuned for that.

So basically I got two options: adding support for Index Buffer VBOs and hope for a CPU overhead reduction, or rewrite it with Display Lists. Considering the kinda crappy way the terrain engine was written, the first option would not be easier than the second, no matter how counter-intuitive that might feel. And yeah, don't get me started on that.

So what I'm asking is basically how good display lists are for 100% static data, compared to VBOs, on modern hardware. Particularly so CPU-wise, since I'd assume a proper implementation of either principle would result in near-maximum GPU throughput. Also, how memory-intensive are Display Lists? This is an information I couldn't find anywhere, plus I'd assume it would be different from vendor to vendor.

There already was a thread about the performance of Dynamic VBOs compared to other methods among which CVAs (and particularly so on ATI hardware), but I couldn't find anything about this, and the few threads on forums such as gamedev didn't feel very, errr, trustworthy. So I'd appreciate any suggestion on this - if required, I'll just code a small test program, but there might be pitfalls to avoid in the VBO implementation (and considering I'd base myself on the original engine's implementation, I would most likely repeat them).

Thanks!


Uttar
 
The amount of memory a display list uses does vary depending on the implementation, but the following FAQ entry on OpenGL.org appears to indicate that they use a significant amount of memory.

As for which is faster, I have an old little test program that generates a fBm heightmap. There's no LOD algorithm involved and there's no rendering optimizations. It's brute-force rendering using quads. With a 1024x1024 heightmap, display lists gave me 33 fps while VBOs gave me about 17 fps.

I also had Windows Task Manager running while the program was running. With VBOs memory usage spiked up to about 90 MB while I was generating the data, but once buffering was complete and I deleted the data from system memory, the program ran using 13 MB. With display lists memory usage was up to 90 MB during data generation, then up to more than 400 MB while the display list was being generated and compiled, then finally 100 MB during rendering.

I don't know about video memory usage, for display lists, but the VBOs should be using about 24 MB plus 16 MB for the indices. Display lists definitely have a speed advantage, but have quite a large overhead during compilation and runtime.

EDIT: I do recall that discussion about dynamic VBOs. From my own tests, it appeared that glBuffer(Sub)Data calls were particularily expensive, for some reason. I didn't try mapping buffers, though. . .

EDIT2: Oh, and this was all tested only on my system: AthlonXP 2100+, 768 MB 266 MHz PC2100 DDR-SDRAM, Radeon 9700 Pro /w Cat5.7 drivers. Nothing is overclocked.
 
Last edited by a moderator:
Interesting stuff, thanks. I'm wondering though - are you rendering the whole thing in a single drawcall? Such a huge VBO would most likely be suboptimal according to the few devdocs I read about it, while I would assume Display Lists to love that. The engine I'm modifying works in a basic "chunk" basis (32x32 by default, but I'll up it to 64x64 most likely), but it's not very different than that (although I'll implement basic per-chunk LODing if I got the time, but if you saw my TODO list, you'd most likely think I'll never get around to it, and you're probably right).

Still, even the "big block" system shouldn't cause a 50% performance drop I'd assume, so I'll probably go with Drawing Lists. "Spikes" shouldn't be a problem considering I'll be using 64x64 chunks, and I can use even smaller ones easily in the editor to improve editing performance.

I'm intruiged by what that FAQ says regarding memory usage too. From that, I might be tempted to use glVertex3s and glNormal3s to save 50% memory on this. Considering the scales we're talking of in the engine and that most things are round anyway, that should work just fine for my purposes. Also, if memory is a problem, I can just free the non-display list vertex/color/etc. data completely once the display list has been initialized. Thanks god I refused to implement deformable terrain ;)
Thanks again, I'm still curious about the performance on smaller chunks though (I'd expect to batch about 1000 quads on average - and yes, considering a cool feature I've been working on, I *am* required ot use quads or at least triangle lists).

Uttar
EDIT: Damnit, should have read that FAQ a bit more carefully - sounds like the driver stores it as it sees fit, which is genrally in FP32, and specifying it in short would change nothing. Oh well.
 
Last edited by a moderator:
Yeah, I just tried smaller blocks (512x512, then 256x256, then 128x128) and found that VBOs now take the lead in performance. . . Looks like for you, VBOs might be the better choice. I should mention, however, that I was using an index buffer. If I don't use an index buffer, then display lists once again take the lead.
 
Last edited by a moderator:
Ostsol: NVIDIA performance docs say that anything above 64K vertices in a VBO is suboptimal, so that seems possible. However, your comment on indices confuses me; are you implying 16MB was with a 4:1 index ratio, and same for the VBO vs Display List performance? If so, then display lists would remain a better choice in my case, considering the low indexing possibilities of my rendering scheme.

Uttar
 
However, your comment on indices confuses me; are you implying 16MB was with a 4:1 index ratio, and same for the VBO vs Display List performance? If so, then display lists would remain a better choice in my case, considering the low indexing possibilities of my rendering scheme.
Yes, that's the index ratio that I ended up having, and VBOs were faster only when an index buffer was used. Just keep in mind that display lists have a much higher memory footprint.

I find it really weird that implementing index buffers would be so much more of a hassle than implementing display lists. . . If you're chunking up the terrain, they'd be really useful considering that you'd only need one index buffer to service all the chunks.
 
Instead of hardcoding one of the options now, you could try to create an interface that supports both and only implement DLs for now. You can try VBOs later if you have the time.

DLs are very convenient when dealing with variable frequency data ( 4 vertices sharing the same texture coordinate, for example) but drivers will tend to aim for (in general cases) maximum performance and fill the gaps for you, hence the high memory requirements, and if this explains why it's easier for you, nothing beats creating VBOs directly instead of letting the driver guess what's best.

Keep in mind OpenGL is a state machine and you can still mix and match different approaches to simplify development and/or increase performance (using immediate mode, keeping some data in regular VBs, standard index buffers, etc). Look out for API calls that require the pipeline to flush, though.
 
Okay, I finally got around to doing a fair bit of testing, so here goes. I used a modified version of OpenGL Geometry Benchmark to which I added VBO support. The only REAL data used is positions in all cases, which takes 12 bytes; the rest is just padding. Also, there are 16 drawcalls, so the per-batch triangle counts ar about a 1/16th of the shown ones, and there are nearly 2 triangles per vertex, too.
Anyhow, here goes. Results are a bit surprising IMO, but still roughly explainable. I was very surprised by the high-performance of things like 240 byes per vertex; there could be optimizations going on, but I'd personally guess there aren't any big ones. However, performance DIES at 256 bytes/vertex, heh. And nope, it's not buffer-size related in this case, because otherwise the smaller batch count performance wouldn't die.
Everything was benchmarked on a non-OCed AGP 8x NVIDIA GeForce 6800GT, with the 77.72 drivers (instrumental settings disabled). Motherboard is a ASUS nForce2 A7N8X Deluxe. All rendering was as expected, obviously. glBufferSubDataARB was used for dynamic VBO testing; interestingly, performance was the same no matter the usage flags given to glBufferDataARB.

12 bytes
--------------------------------------------------------------------------------------------
IM Display List (H 0 F L S): 548.00 FPS, 171.87 MTS, 313632 Tris (T113/288)
Static VBO (H 0 F L S): 547.67 FPS, 171.77 MTS, 313632 Tris (T305/288)
Dynamic VBO (H 0 F L S): 355.10 FPS, 111.37 MTS, 313632 Tris (T337/288)
Compiled vertex arrays (H 0 F L S): 287.67 FPS, 90.22 MTS, 313632 Tris (T81/288)
IM Display List (L 0 F L S): 4606.33 FPS, 33.17 MTS, 7200 Tris (T112/288)
Dynamic VBO (L 0 F L S): 4533.00 FPS, 32.64 MTS, 7200 Tris (T336/288)
Static VBO (L 0 F L S): 4531.00 FPS, 32.62 MTS, 7200 Tris (T304/288)
Compiled vertex arrays (L 0 F L S): 4412.33 FPS, 31.77 MTS, 7200 Tris (T80/288)
--------------------------------------------------------------------------------------------
16 bytes
--------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 544.15 FPS, 170.66 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4563.67 FPS, 32.86 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 91.61 FPS, 28.73 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 2821.00 FPS, 20.31 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
20 bytes
--------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 525.82 FPS, 164.92 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4473.67 FPS, 32.21 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 74.44 FPS, 23.35 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 2446.67 FPS, 17.62 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
24 bytes
--------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 430.86 FPS, 135.13 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4473.33 FPS, 32.21 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 60.63 FPS, 19.01 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 2028.67 FPS, 14.61 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
28 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 368.09 FPS, 115.44 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4457.33 FPS, 32.09 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 50.71 FPS, 15.91 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 1787.33 FPS, 12.87 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
32 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 326.00 FPS, 102.24 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4484.67 FPS, 32.29 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 75.72 FPS, 23.75 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 2688.67 FPS, 19.36 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
36 bytes
--------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 329.78 FPS, 103.43 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4512.33 FPS, 32.49 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 38.18 FPS, 11.97 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 1458.33 FPS, 10.50 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
40 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 272.49 FPS, 85.46 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4379.00 FPS, 31.53 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 34.15 FPS, 10.71 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 1312.00 FPS, 9.45 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------

44 bytes
--------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 255.00 FPS, 79.98 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4435.67 FPS, 31.94 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 34.09 FPS, 10.69 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 1319.33 FPS, 9.50 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
48 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 375.08 FPS, 117.64 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4519.00 FPS, 32.54 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 28.20 FPS, 8.84 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 1126.00 FPS, 8.11 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
52 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 288.33 FPS, 90.43 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4525.33 FPS, 32.58 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 27.93 FPS, 8.76 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 1124.33 FPS, 8.10 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
56 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 282.49 FPS, 88.60 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4427.33 FPS, 31.88 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 27.38 FPS, 8.59 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 1070.00 FPS, 7.70 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
60 bytes
--------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 296.57 FPS, 93.01 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4434.00 FPS, 31.92 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 27.41 FPS, 8.60 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 1122.33 FPS, 8.08 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
64 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 386.67 FPS, 121.27 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4530.00 FPS, 32.62 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 26.69 FPS, 8.37 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 1115.33 FPS, 8.03 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
68 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 305.90 FPS, 95.94 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4507.67 FPS, 32.46 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 21.08 FPS, 6.61 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 866.67 FPS, 6.24 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
72 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 318.45 FPS, 99.88 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4505.00 FPS, 32.44 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 20.71 FPS, 6.50 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 842.67 FPS, 6.07 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
76 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 327.45 FPS, 102.70 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4433.33 FPS, 31.92 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 18.97 FPS, 5.95 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 781.33 FPS, 5.63 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
80 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 392.54 FPS, 123.11 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4533.00 FPS, 32.64 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 20.51 FPS, 6.43 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 861.67 FPS, 6.20 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
96 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 395.00 FPS, 123.88 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4554.33 FPS, 32.79 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 16.64 FPS, 5.22 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 701.77 FPS, 5.05 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
128 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 408.00 FPS, 127.96 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4537.67 FPS, 32.67 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 12.07 FPS, 3.79 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 509.50 FPS, 3.67 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
160 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 403.67 FPS, 126.60 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4502.33 FPS, 32.42 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 10.63 FPS, 3.33 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 438.00 FPS, 3.15 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
220 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 340.89 FPS, 106.91 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4482.00 FPS, 32.27 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 11.20 FPS, 3.51 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 336.33 FPS, 2.42 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
240 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 404.53 FPS, 126.87 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4511.33 FPS, 32.48 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 12.09 FPS, 3.79 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 344.89 FPS, 2.48 MTS, 7200 Tris (T336/288)
-------------------------------------------------------------------------------------------
252 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 341.11 FPS, 106.98 MTS, 313632 Tris (T305/288)
Static VBO (L 0 F L S): 4504.33 FPS, 32.43 MTS, 7200 Tris (T304/288)
Dynamic VBO (H 0 F L S): 11.57 FPS, 3.63 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 280.39 FPS, 2.02 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
256 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 84.44 FPS, 26.48 MTS, 313632 Tris (T305/288)
Dynamic VBO (H 0 F L S): 4.46 FPS, 1.40 MTS, 313632 Tris (T337/288)
Static VBO (L 0 F L S): 160.28 FPS, 1.15 MTS, 7200 Tris (T304/288)
Dynamic VBO (L 0 F L S): 98.84 FPS, 0.71 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
260 bytes
-------------------------------------------------------------------------------------------
Static VBO (H 0 F L S): 70.57 FPS, 22.13 MTS, 313632 Tris (T305/288)
Dynamic VBO (H 0 F L S): 4.29 FPS, 1.34 MTS, 313632 Tris (T337/288)
Static VBO (L 0 F L S): 159.40 FPS, 1.15 MTS, 7200 Tris (T304/288)
Dynamic VBO (L 0 F L S): 91.82 FPS, 0.66 MTS, 7200 Tris (T336/288)
--------------------------------------------------------------------------------------------
 
A slight precision: regarding dynamic VBOs (well, streaming basically, but usage flags on NVIDIA hardware gave me no performance changes), what I did in those tests is keep TWO VBOs for each sphere being rendered. So frame A I'd use the first 16 VBOs for the 16 spheres, and frame B I'd use the last 16 VBOs (0->15 for A, 16->31 for B). More VBOs gave me no performance benefit.

Performance with 1 VBO for all 16 spheres, so it would be streamed to 16 times per frame:
Dynamic VBO (H 0 F L S): 291.67 FPS, 91.48 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 3115.00 FPS, 22.43 MTS, 7200 Tris (T336/288)
Performance with 1 VBO per sphere:
Dynamic VBO (H 0 F L S): 292.33 FPS, 91.69 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 3125.67 FPS, 22.50 MTS, 7200 Tris (T336/288)
Performance with 2 VBOs per sphere, alternating between frames (see above):
Dynamic VBO (H 0 F L S): 355.21 FPS, 111.41 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 4448.33 FPS, 32.03 MTS, 7200 Tris (T336/288)
Performance with 3 VBOs per sphere (for frames A, B and C):
Dynamic VBO (H 0 F L S): 355.33 FPS, 111.44 MTS, 313632 Tris (T337/288)
Dynamic VBO (L 0 F L S): 4516.33 FPS, 32.52 MTS, 7200 Tris (T336/288)

Hopefully all this info will help someone :) Also, regarding VERY small batches (16 vertices, about 30-35 triangles I think), dynamic VBO performance is FASTER than Immediate Mode by a few % if using the "Alternating Frame" principle, and lower by a few % if not using it.
BTW, from my limited testing, using glMapBuffe/glUnmapBuffer with a NULL glBufferDataARB beforehands is nearly as fast as using glBufferSubDataARB; slightly higher call overhead and possibly higher overhead in your own program though, obviously, but nothing significant if done right.

Uttar
P.S.: Testing CVAs and DLs with more data and testing VBOs with actual data rather than padding might be interesting, but I'd expect performance to be highly similar, so I didn't really bother much except for a few rare testcases iirc which gave me that rough idea too. Ah well, this is more than enough information for my own uses, although I'll have to check on another dev's 9700Pro to check if everything is working as expected on his card too.
 
Last edited by a moderator:
Back
Top