This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <GL/GLUT.h> | |
void init(float r, float g, float b) { | |
glClearColor(r, g, b, 0.0); | |
glMatrixMode(GL_PROJECTION); | |
gluOrtho2D(0.0, 0.0, 0.0, 0.0); | |
} | |
void display() { | |
glClear(GL_COLOR_BUFFER_BIT); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!-- | |
Google Material Design Color Palette for Android XML | |
http://www.google.com/design/spec/style/color.html#color-ui-color-palette | |
--> | |
<resources> | |
<color name="red_50">#FFEBEE</color> | |
<color name="red_100">#FFCDD2</color> |
NewerOlder