VERTEX BUFFER SIZE

From Valve Developer Community
Jump to navigation Jump to search

Template:Wrongtitle The VERTEX_BUFFER_SIZE is the limit on the size of a single vertex buffer. Multiple buffers are rendered per scene, so this isn't a limit that you should ever encounter. If you are hitting it, you've most likely got a bug in your mod's code or content.

Resolution to VERTEX_BUFFER_SIZE

This happens when there are too many brushes in your camera view to be rendered and that is what causes your game to crash, bringing up the VERTEX_BUFFER_SIZE error. Try filling areas with larger brushes rather than using smaller ones, which usually just clog up the max amount of brushes the Source engine allows you to render in your camera view. This should fix VERTEX_BUFFER_SIZE but if the problem persists, go over the smaller brushes and see if you can use one larger brush over a few smalelr ones.

-Mooseboi


When compiled, game crashes because of too many brushes.
When compiled, game runs fine, proving too many brushes is the cause.