Ejemplo n.º 1
0
void render_cone_bbox(LLBBox bbox)
{
	glMatrixMode(GL_MODELVIEW);
	gGL.pushMatrix();

	setup_transforms_bbox(bbox);

	gGL.flush();
	gCone.render(CONE_LOD_HIGHEST);

	gGL.popMatrix();
}
Ejemplo n.º 2
0
void render_cone_bbox(LLBBox bbox)
{
	gGL.matrixMode(LLRender::MM_MODELVIEW);
	gGL.pushMatrix();

	setup_transforms_bbox(bbox);

	gGL.flush();
	gCone.render();

	gGL.popMatrix();
}
Ejemplo n.º 3
0
void render_bbox(LLBBox bbox)
{
	glMatrixMode(GL_MODELVIEW);
	gGL.pushMatrix();

	setup_transforms_bbox(bbox);

	gGL.flush();
	gBox.render();

	gGL.popMatrix();
}