1 // Copyright 2013 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.
5 #ifndef CC_TEST_TEST_WEB_GRAPHICS_CONTEXT_3D_H_
6 #define CC_TEST_TEST_WEB_GRAPHICS_CONTEXT_3D_H_
10 #include "base/callback.h"
11 #include "base/compiler_specific.h"
12 #include "base/containers/hash_tables.h"
13 #include "base/containers/scoped_ptr_hash_map.h"
14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/weak_ptr.h"
17 #include "base/stl_util.h"
18 #include "base/synchronization/lock.h"
19 #include "cc/output/context_provider.h"
20 #include "cc/test/ordered_texture_map.h"
21 #include "cc/test/test_texture.h"
22 #include "third_party/khronos/GLES2/gl2.h"
23 #include "ui/gfx/rect.h"
26 class TestContextSupport
;
28 class TestWebGraphicsContext3D
{
30 static scoped_ptr
<TestWebGraphicsContext3D
> Create();
32 virtual ~TestWebGraphicsContext3D();
34 void set_context_lost_callback(const base::Closure
& callback
) {
35 context_lost_callback_
= callback
;
38 virtual void reshapeWithScaleFactor(int width
,
42 virtual bool isContextLost();
44 virtual void discardFramebufferEXT(GLenum target
,
45 GLsizei num_attachments
,
46 const GLenum
* attachments
) {}
48 virtual void activeTexture(GLenum texture
) {}
49 virtual void attachShader(GLuint program
, GLuint shader
);
50 virtual void bindFramebuffer(GLenum target
, GLuint framebuffer
);
51 virtual void bindRenderbuffer(GLenum target
, GLuint renderbuffer
);
52 virtual void bindTexture(GLenum target
, GLuint texture_id
);
54 virtual void texParameteri(GLenum target
, GLenum pname
, GLint param
);
55 virtual void getTexParameteriv(GLenum target
, GLenum pname
, GLint
* value
);
56 virtual void asyncTexImage2DCHROMIUM(GLenum target
,
58 GLenum internalformat
,
64 const void* pixels
) {}
65 virtual void asyncTexSubImage2DCHROMIUM(GLenum target
,
73 const void* pixels
) {}
74 virtual void waitAsyncTexImage2DCHROMIUM(GLenum target
) {}
75 virtual void releaseTexImage2DCHROMIUM(GLenum target
, GLint image_id
) {}
77 virtual GLenum
checkFramebufferStatus(GLenum target
);
79 virtual void clear(GLbitfield mask
) {}
80 virtual void clearColor(GLclampf red
,
84 virtual void clearStencil(GLint s
) {}
85 virtual void compressedTexImage2D(GLenum target
,
87 GLenum internal_format
,
93 virtual GLint
getUniformLocation(GLuint program
, const GLchar
* name
);
94 virtual GLsizeiptr
getVertexAttribOffset(GLuint index
, GLenum pname
);
96 virtual GLboolean
isBuffer(GLuint buffer
);
97 virtual GLboolean
isEnabled(GLenum cap
);
98 virtual GLboolean
isFramebuffer(GLuint framebuffer
);
99 virtual GLboolean
isProgram(GLuint program
);
100 virtual GLboolean
isRenderbuffer(GLuint renderbuffer
);
101 virtual GLboolean
isShader(GLuint shader
);
102 virtual GLboolean
isTexture(GLuint texture
);
104 virtual void useProgram(GLuint program
);
106 virtual void viewport(GLint x
, GLint y
, GLsizei width
, GLsizei height
) {}
108 virtual void genBuffers(GLsizei count
, GLuint
* ids
);
109 virtual void genFramebuffers(GLsizei count
, GLuint
* ids
);
110 virtual void genRenderbuffers(GLsizei count
, GLuint
* ids
);
111 virtual void genTextures(GLsizei count
, GLuint
* ids
);
113 virtual void deleteBuffers(GLsizei count
, GLuint
* ids
);
114 virtual void deleteFramebuffers(GLsizei count
, GLuint
* ids
);
115 virtual void deleteRenderbuffers(GLsizei count
, GLuint
* ids
);
116 virtual void deleteTextures(GLsizei count
, GLuint
* ids
);
118 virtual GLuint
createBuffer();
119 virtual GLuint
createFramebuffer();
120 virtual GLuint
createRenderbuffer();
121 virtual GLuint
createTexture();
123 virtual void deleteBuffer(GLuint id
);
124 virtual void deleteFramebuffer(GLuint id
);
125 virtual void deleteRenderbuffer(GLuint id
);
126 virtual void deleteTexture(GLuint id
);
128 virtual GLuint
createProgram();
129 virtual GLuint
createShader(GLenum
);
130 virtual GLuint
createExternalTexture();
132 virtual void deleteProgram(GLuint id
);
133 virtual void deleteShader(GLuint id
);
135 virtual void texStorage2DEXT(GLenum target
,
137 GLuint internalformat
,
141 virtual GLuint
createQueryEXT();
142 virtual void deleteQueryEXT(GLuint query
) {}
143 virtual void beginQueryEXT(GLenum target
, GLuint query
) {}
144 virtual void endQueryEXT(GLenum target
);
145 virtual void getQueryObjectuivEXT(GLuint query
, GLenum pname
, GLuint
* params
);
147 virtual void scissor(GLint x
, GLint y
, GLsizei width
, GLsizei height
) {}
149 virtual void texImage2D(GLenum target
,
151 GLenum internalformat
,
157 const void* pixels
) {}
159 virtual void texSubImage2D(GLenum target
,
167 const void* pixels
) {}
169 virtual void genMailboxCHROMIUM(GLbyte
* mailbox
);
170 virtual void produceTextureCHROMIUM(GLenum target
,
171 const GLbyte
* mailbox
) { }
172 virtual void consumeTextureCHROMIUM(GLenum target
,
173 const GLbyte
* mailbox
) { }
175 virtual void loseContextCHROMIUM(GLenum current
, GLenum other
);
177 virtual void bindTexImage2DCHROMIUM(GLenum target
, GLint image_id
) {}
179 virtual void drawArrays(GLenum mode
, GLint first
, GLsizei count
) {}
180 virtual void drawElements(GLenum mode
,
184 virtual void disable(GLenum cap
) {}
185 virtual void enable(GLenum cap
) {}
186 virtual void finish();
187 virtual void flush();
188 virtual void shallowFlushCHROMIUM() {}
190 virtual void getAttachedShaders(GLuint program
,
194 virtual GLint
getAttribLocation(GLuint program
, const GLchar
* name
);
195 virtual void getBooleanv(GLenum pname
, GLboolean
* value
) {}
196 virtual void getBufferParameteriv(GLenum target
, GLenum pname
, GLint
* value
) {
198 virtual GLenum
getError();
199 virtual void getFloatv(GLenum pname
, GLfloat
* value
) {}
200 virtual void getFramebufferAttachmentParameteriv(GLenum target
,
205 virtual void getIntegerv(GLenum pname
, GLint
* value
);
207 virtual void getProgramiv(GLuint program
, GLenum pname
, GLint
* value
);
209 virtual void getRenderbufferParameteriv(GLenum target
,
213 virtual void getShaderiv(GLuint shader
, GLenum pname
, GLint
* value
);
215 virtual void getShaderPrecisionFormat(GLenum shadertype
,
216 GLenum precisiontype
,
220 virtual void getTexParameterfv(GLenum target
, GLenum pname
, GLfloat
* value
) {}
221 virtual void getUniformfv(GLuint program
, GLint location
, GLfloat
* value
) {}
222 virtual void getUniformiv(GLuint program
, GLint location
, GLint
* value
) {}
223 virtual void getVertexAttribfv(GLuint index
, GLenum pname
, GLfloat
* value
) {}
224 virtual void getVertexAttribiv(GLuint index
, GLenum pname
, GLint
* value
) {}
226 virtual void bindBuffer(GLenum target
, GLuint buffer
);
227 virtual void bufferData(GLenum target
,
231 virtual void* mapBufferCHROMIUM(GLenum target
,
233 virtual GLboolean
unmapBufferCHROMIUM(GLenum target
);
235 virtual GLuint
createImageCHROMIUM(GLsizei width
,
237 GLenum internalformat
);
238 virtual void destroyImageCHROMIUM(GLuint image_id
);
239 virtual void getImageParameterivCHROMIUM(GLuint image_id
,
242 virtual void* mapImageCHROMIUM(GLuint image_id
, GLenum access
);
243 virtual void unmapImageCHROMIUM(GLuint image_id
);
244 virtual void texImageIOSurface2DCHROMIUM(GLenum target
,
247 GLuint io_surface_id
,
250 virtual unsigned insertSyncPoint();
251 virtual void waitSyncPoint(unsigned sync_point
);
253 unsigned last_waited_sync_point() const { return last_waited_sync_point_
; }
255 const ContextProvider::Capabilities
& test_capabilities() const {
256 return test_capabilities_
;
259 void set_context_lost(bool context_lost
) { context_lost_
= context_lost
; }
260 void set_times_bind_texture_succeeds(int times
) {
261 times_bind_texture_succeeds_
= times
;
263 void set_times_end_query_succeeds(int times
) {
264 times_end_query_succeeds_
= times
;
267 // When set, mapImageCHROMIUM and mapBufferCHROMIUM will return NULL after
269 void set_times_map_image_chromium_succeeds(int times
) {
270 times_map_image_chromium_succeeds_
= times
;
272 void set_times_map_buffer_chromium_succeeds(int times
) {
273 times_map_buffer_chromium_succeeds_
= times
;
276 size_t NumTextures() const;
277 GLuint
TextureAt(int i
) const;
279 size_t NumUsedTextures() const { return used_textures_
.size(); }
280 bool UsedTexture(int texture
) const {
281 return ContainsKey(used_textures_
, texture
);
283 void ResetUsedTextures() { used_textures_
.clear(); }
285 void set_have_extension_io_surface(bool have
) {
286 test_capabilities_
.gpu
.iosurface
= have
;
287 test_capabilities_
.gpu
.texture_rectangle
= have
;
289 void set_have_extension_egl_image(bool have
) {
290 test_capabilities_
.gpu
.egl_image_external
= have
;
292 void set_have_post_sub_buffer(bool have
) {
293 test_capabilities_
.gpu
.post_sub_buffer
= have
;
295 void set_have_discard_framebuffer(bool have
) {
296 test_capabilities_
.gpu
.discard_framebuffer
= have
;
298 void set_support_compressed_texture_etc1(bool support
) {
299 test_capabilities_
.gpu
.texture_format_etc1
= support
;
301 void set_support_texture_storage(bool support
) {
302 test_capabilities_
.gpu
.texture_storage
= support
;
305 // When this context is lost, all contexts in its share group are also lost.
306 void add_share_group_context(TestWebGraphicsContext3D
* context3d
) {
307 shared_contexts_
.push_back(context3d
);
310 void set_max_texture_size(int size
) { max_texture_size_
= size
; }
312 static const GLuint kExternalTextureId
;
313 virtual GLuint
NextTextureId();
314 virtual void RetireTextureId(GLuint id
);
316 virtual GLuint
NextBufferId();
317 virtual void RetireBufferId(GLuint id
);
319 virtual GLuint
NextImageId();
320 virtual void RetireImageId(GLuint id
);
322 size_t GetTransferBufferMemoryUsedBytes() const;
323 void SetMaxTransferBufferUsageBytes(size_t max_transfer_buffer_usage_bytes
);
324 size_t GetPeakTransferBufferMemoryUsedBytes() const {
325 return peak_transfer_buffer_memory_used_bytes_
;
328 void set_test_support(TestContextSupport
* test_support
) {
329 test_support_
= test_support
;
332 int width() const { return width_
; }
333 int height() const { return height_
; }
334 bool reshape_called() const { return reshape_called_
; }
335 void clear_reshape_called() { reshape_called_
= false; }
336 float scale_factor() const { return scale_factor_
; }
344 gfx::Rect
update_rect() const { return update_rect_
; }
346 UpdateType
last_update_type() { return last_update_type_
; }
349 struct TextureTargets
{
353 void BindTexture(GLenum target
, GLuint id
);
354 void UnbindTexture(GLuint id
);
356 GLuint
BoundTexture(GLenum target
);
359 typedef base::hash_map
<GLenum
, GLuint
> TargetTextureMap
;
360 TargetTextureMap bound_textures_
;
368 scoped_ptr
<uint8
[]> pixels
;
372 DISALLOW_COPY_AND_ASSIGN(Buffer
);
379 scoped_ptr
<uint8
[]> pixels
;
382 DISALLOW_COPY_AND_ASSIGN(Image
);
385 struct Namespace
: public base::RefCountedThreadSafe
<Namespace
> {
388 // Protects all fields.
390 unsigned next_buffer_id
;
391 unsigned next_image_id
;
392 unsigned next_texture_id
;
393 base::ScopedPtrHashMap
<unsigned, Buffer
> buffers
;
394 base::ScopedPtrHashMap
<unsigned, Image
> images
;
395 OrderedTextureMap textures
;
398 friend class base::RefCountedThreadSafe
<Namespace
>;
400 DISALLOW_COPY_AND_ASSIGN(Namespace
);
403 TestWebGraphicsContext3D();
405 void CreateNamespace();
406 GLuint
BoundTextureId(GLenum target
);
407 scoped_refptr
<TestTexture
> BoundTexture(GLenum target
);
408 void CheckTextureIsBound(GLenum target
);
410 unsigned context_id_
;
411 ContextProvider::Capabilities test_capabilities_
;
412 int times_bind_texture_succeeds_
;
413 int times_end_query_succeeds_
;
415 int times_map_image_chromium_succeeds_
;
416 int times_map_buffer_chromium_succeeds_
;
417 base::Closure context_lost_callback_
;
418 base::hash_set
<unsigned> used_textures_
;
419 unsigned next_program_id_
;
420 base::hash_set
<unsigned> program_set_
;
421 unsigned next_shader_id_
;
422 base::hash_set
<unsigned> shader_set_
;
423 std::vector
<TestWebGraphicsContext3D
*> shared_contexts_
;
424 int max_texture_size_
;
425 bool reshape_called_
;
429 TestContextSupport
* test_support_
;
430 gfx::Rect update_rect_
;
431 UpdateType last_update_type_
;
432 unsigned next_insert_sync_point_
;
433 unsigned last_waited_sync_point_
;
435 unsigned bound_buffer_
;
436 TextureTargets texture_targets_
;
438 size_t peak_transfer_buffer_memory_used_bytes_
;
440 scoped_refptr
<Namespace
> namespace_
;
441 static Namespace
* shared_namespace_
;
443 base::WeakPtrFactory
<TestWebGraphicsContext3D
> weak_ptr_factory_
;
448 #endif // CC_TEST_TEST_WEB_GRAPHICS_CONTEXT_3D_H_