summaryrefslogtreecommitdiff
path: root/examples/triangle.c
blob: 83da5e44094905ce419423d5b4867be6ebdaf535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Example demonstrating basic RAL usage by rendering a triangle

#include <celeritas.h>

int main() {
  core_bringup("Celeritas Example: Triangle", NULL);

  while (!app_should_exit()) {
    // 
  }

  return 0;
}