TDME2 1.9.121
TransparentRenderFace.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
7
8/**
9 * Transparent face to be rendered
10 * @author Andreas Drewke
11 * @version $Id$
12 */
14{
17 int32_t faceIdx;
19
20 /**
21 * Compare
22 * @param face1 face 1
23 * @param face2 face 2
24 */
25 inline static bool compare(TransparentRenderFace* face1, TransparentRenderFace* face2) {
26 return face1->distanceFromCamera > face2->distanceFromCamera;
27 }
28
29};
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
static bool compare(TransparentRenderFace *face1, TransparentRenderFace *face2)
Compare.