summaryrefslogtreecommitdiff
path: root/examples/triangle.c
blob: ccbcea37ef8acfe7b7b7656a45f3aad4d8256138 (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()) {
    glfwPollEvents();
  }

  return 0;
}