Size of the active attribute at index

Property definitions

glesv2 $ GLProgram :: active_attrib_size
	# Size of the active attribute at `index`
	fun active_attrib_size(index: Int): Int `{
		int size;
		GLenum type;
		glGetActiveAttrib(self, index, 0, NULL, &size, &type, NULL);
		return size;
	`}
lib/glesv2/glesv2.nit:128,2--134,3