Does my old Intel 946GZ Express Chipset Family supports OpenGL 2.0...?

Plz reply soon i want to sale it to a minecraft lover...!

Dani AI

Generated

A short, practical checklist for (building on and ): vendor/spec pages sometimes list OpenGL levels for the chipset, but on Linux the version that applications actually see is determined by the kernel DRM driver + Mesa (the OpenGL implementation) or by a software rasterizer like llvmpipe. Mesa ships the Intel drivers and software backends used on Arch. (en.wikipedia.org)

Install and verify (Arch):

sudo pacman -Syu mesa mesa-demos
# If running 32-bit Java (older Minecraft builds): sudo pacman -S lib32-mesa
# Optional: sudo pacman -S xf86-video-intel   (note: xf86-video-intel is optional; modesetting is often preferred)
sudo modprobe i915
glxinfo -B | grep -i 'OpenGL\|renderer'

mesa-demos provides glxinfo (the right tool to read the reported OpenGL version and renderer). If the renderer string shows Mesa DRI Intel(...) and the OpenGL version is >= 2.0, hardware-accelerated OpenGL 2.x is available. If it shows llvmpipe or Software Rasterizer, Mesa is falling back to software rendering (works but is very slow for games). (phoronix.com)

Troubleshooting and quick diagnostics:

  • Confirm driver in use: lspci -k | grep -A3 VGA — look for Kernel driver in use: i915.
  • If llvmpipe appears, ensure no nomodeset kernel parameter, check dmesg and /var/log/Xorg.0.log for i915 errors, and try removing xf86-video-intel so X uses the modesetting driver (sometimes fixes acceleration).
  • Historical note: older i915-family chips (945/946/GMA-series) often reported only GL 1.x with older Mesa releases; outputs from older systems show OpenGL 1.3–1.4 unless newer Mesa/driver support is present. Expect limited performance even when a 2.0 context is exposed. (bbs.archlinux.org)

Practical outcome for resale: run the glxinfo check and try launching Minecraft. If the renderer is llvmpipe or OpenGL < 2.0, the board will struggle to run Minecraft acceptably; otherwise a short gameplay test will confirm whether the board is worth selling to a player.

Recommended Answers

All 3 Replies

Yup rubberman is right.

How do i install openGl in arch linux ...!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.