| Summary: | radeonsi enable GLSL 1.3 by default | ||
|---|---|---|---|
| Product: | Mesa | Reporter: | Alec Ari <neotheuser> |
| Component: | Drivers/Gallium/radeonsi | Assignee: | Default DRI bug account <dri-devel> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | medium | ||
| Version: | git | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
| i915 platform: | i915 features: | ||
It wasn't actually ready yet, but now it is. :) commit cdad129f9cda038fb29cde94645d2fcab7207c50 Author: Michel Dänzer <michel.daenzer@amd.com> Date: Fri May 24 16:49:42 2013 +0200 radeonsi: Enable GLSL 1.30 |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.
GLSL 1.3 has now been static to the r600g driver. Shouldn't this be done for radeonsi as well? case PIPE_CAP_GLSL_FEATURE_LEVEL: return debug_get_bool_option("R600_GLSL130", FALSE) ? 130 : 120; to case PIPE_CAP_GLSL_FEATURE_LEVEL: return 130; Thanks!