Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GLBlendEquation.cpp « rendering « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2cbd003c58e5cd267b6f2ebf2ccc2572e03f87db (plain)
1
2
3
4
5
6
7
8
9
#include "GLBlendEquation.h"

void FRS_glBlendEquation(GLenum mode) {
	if( glBlendEquation ) {
		glBlendEquation(mode);
	} else if ( glBlendEquationEXT ) {
		glBlendEquationEXT(mode);
	}
}