Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: client/deps/glbench/src/shaders.h

Issue 894003: Teartest with -o flag to specify override redirect window and -r number to specify refresh rate. (Closed)
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BENCH_GL_SHADERS_H_ 5 #ifndef BENCH_GL_SHADERS_H_
6 #define BENCH_GL_SHADERS_H_ 6 #define BENCH_GL_SHADERS_H_
7 7
8 typedef GLuint ShaderProgram; 8 typedef GLuint ShaderProgram;
9 9
10 ShaderProgram InitShaderProgram(const char *vertex_src,
11 const char *fragment_src);
10 void DeleteShaderProgram(ShaderProgram program); 12 void DeleteShaderProgram(ShaderProgram program);
11 ShaderProgram AttributeFetchShaderProgram(int attribute_count, 13 ShaderProgram AttributeFetchShaderProgram(int attribute_count,
12 GLuint vertex_buffers[]); 14 GLuint vertex_buffers[]);
13 ShaderProgram VaryingsShaderProgram(int varyings_count, GLuint vertex_buffer); 15 ShaderProgram VaryingsShaderProgram(int varyings_count, GLuint vertex_buffer);
14 ShaderProgram DdxDdyShaderProgram(bool ddx, GLuint vertex_buffer); 16 ShaderProgram DdxDdyShaderProgram(bool ddx, GLuint vertex_buffer);
15 ShaderProgram YuvToRgbShaderProgram(int type, GLuint vertex_buffer, 17 ShaderProgram YuvToRgbShaderProgram(int type, GLuint vertex_buffer,
16 int width, int height); 18 int width, int height);
17 19
18 #endif // BENCH_GL_SHADERS_H_ 20 #endif // BENCH_GL_SHADERS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698