summaryrefslogtreecommitdiffstats
path: root/ppapi/tests/test_graphics_3d.h
blob: 2914f969bd701b3c017c21dea4895fdea5d4bb5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef PAPPI_TESTS_TEST_GRAPHICS_3D_H_
#define PAPPI_TESTS_TEST_GRAPHICS_3D_H_

#include <string>
#include "ppapi/tests/test_case.h"

struct PPB_OpenGLES2;

namespace pp {
class Graphics3D;
}  // namespace pp

class TestGraphics3D : public TestCase {
 public:
  TestGraphics3D(TestingInstance* instance) : TestCase(instance) {}

  // TestCase implementation.
  virtual bool Init();
  virtual void RunTests(const std::string& filter);

 private:
  // Various tests.
  std::string TestExtensionsGL();
  std::string TestFrameGL();
  std::string TestFramePPAPI();
  std::string TestBadResource();

  // Utils used by various tests.
  int32_t SwapBuffersSync(pp::Graphics3D* context);
  std::string CheckPixelPPAPI(pp::Graphics3D* context,
                             int x, int y, const uint8_t expected_color[4]);
  std::string CheckPixelGL(int x, int y, const uint8_t expected_color[4]);

  // OpenGL ES2 interface.
  const PPB_OpenGLES2* opengl_es2_;
};

#endif  // PAPPI_TESTS_TEST_GRAPHICS_3D_H_