[kwinglutils] Drop unused macro MAKE_GL_VERSION

No longer needed, as replacement there would be kVersionNumber
This commit is contained in:
Martin Gräßlin 2016-11-17 14:15:21 +01:00
parent 6bee7f4aac
commit cb3b0232dd

View file

@ -47,8 +47,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define DEBUG_GLRENDERTARGET 0
#define MAKE_GL_VERSION(major, minor, release) ( ((major) << 16) | ((minor) << 8) | (release) )
#ifdef __GNUC__
# define likely(x) __builtin_expect(!!(x), 1)
# define unlikely(x) __builtin_expect(!!(x), 0)