Home | History | Annotate | Download | only in src

Lines Matching refs:height

97 void SaveImage(const char* name, const int width, const int height) {
98 const int size = width * height * 4;
100 glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, pixels.get());
106 pixels.get(), width, height);
109 void ComputeMD5(unsigned char digest[16], const int width, const int height) {
112 const int size = width * height * 4;
114 glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, pixels.get());
120 const int width, const int height, bool inverse) {
145 ComputeMD5(d, width, height);
154 SaveImage(name_png, width, height);
187 const int height)
189 RunTest(this, name, width * height, width, height, true);