gtf_stubs.h 617 B

1234567891011121314151617181920212223
  1. // Copyright (c) 2011 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. // A few stubs so we don't need the actual OpenGL ES 2.0 conformance tests
  5. // to compile the support for them.
  6. #ifndef GPU_GLES2_CONFORM_SUPPORT_GTF_GTF_STUBS_H_
  7. #define GPU_GLES2_CONFORM_SUPPORT_GTF_GTF_STUBS_H_
  8. #include <GLES2/gl2.h>
  9. #include <EGL/egl.h>
  10. #include <EGL/eglext.h>
  11. typedef unsigned char GTFbool;
  12. #define GTFfalse 0
  13. #define GTFtrue 1
  14. int GTFMain(int argc, char** argv);
  15. #endif // GPU_GLES2_CONFORM_SUPPORT_GTF_GTF_STUBS_H_