

You can run Blender 2.9 without a dedicated graphics unit, but you probably don’t want to. And even if you don’t have a dedicated GPU, every CPU will also come with its own integrated GPU. It wasn’t until recently that support for GPU rendering was added to Blender. Graphics Card with 2 GB RAM, OpenGL 4.3.

Budget-oriented computers from the last few years typically have at least 4 cores in their CPU and will be suitable for Blender.īut for optimum performance, you’ll want to have In 2021, this is a common spec to find in most desktops and laptops. Plus you should have plenty of RAM, at least 8GB for starters. This includes developing for every major operating system (Windows, macOS, and Linux), as well as designing for lower-end computers.īlender recommends that you have a relatively new CPU that has at least 4 cores. As for OpenGL 4.x, it isn’t even supported on Mac OS yet.Since Blender is free and open-source, they strive to make it operable on as many devices as possible. I don’t think Blender should support those, but it does affect certain users (like UncleEntity). There are unfortunately a lot of people who have really crappy integrated intel graphics without full support for 2.0. Even an openGL 2 card is dirt cheap these days (in fact, I doubt they even make cards that aren’t at least OGL4 compliant anymore). Not everyone has a card that supports OGL4 but I would wager that NOBODY is using a card that only supports 1.4. It’s quite a burden to support both, which is evident from the Viewport FX project spending a lot of time on just creating a compatibility layer for functions which are deprecated (and don’t exist in OpenGL ES, used on Android). Now, having said that, the difference between code using old-style immediate-mode/fixed-function OpenGL and shader/buffer-based OpenGL is enormous.

VBOs make the single largest impact on rendering speed and as soon as all drawing code uses it, there isn’t that much to be gained anymore (at least as far as OpenGL is concerned). The features required for VBOs and GLSL mode became core in 2.0, for instance. Blender certainly doesn’t use any features that became core in OpenGL 4.x (tesselation, compute shaders) for now. Pretty much any feature that is part of the OpenGL core of a given version is accessible through the OpenGL extension mechanism beforehand. Just going by version numbers in OpenGL isn’t very meaningful. 4.3 is out and we still are using Open GL 1.4?
