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

Side by Side Diff: gpu/command_buffer/service/gles2_cmd_copy_texture_chromium.h

Issue 988693005: Chromium roll (https://codereview.chromium.org/976353002) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: fixed bad android build patch Created 5 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium 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 GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_COPY_TEXTURE_CHROMIUM_H_ 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_COPY_TEXTURE_CHROMIUM_H_
6 #define GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_COPY_TEXTURE_CHROMIUM_H_ 6 #define GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_COPY_TEXTURE_CHROMIUM_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/containers/hash_tables.h" 10 #include "base/containers/hash_tables.h"
(...skipping 17 matching lines...) Expand all
28 ~CopyTextureCHROMIUMResourceManager(); 28 ~CopyTextureCHROMIUMResourceManager();
29 29
30 void Initialize(const gles2::GLES2Decoder* decoder); 30 void Initialize(const gles2::GLES2Decoder* decoder);
31 void Destroy(); 31 void Destroy();
32 32
33 void DoCopyTexture(const gles2::GLES2Decoder* decoder, 33 void DoCopyTexture(const gles2::GLES2Decoder* decoder,
34 GLenum source_target, 34 GLenum source_target,
35 GLuint source_id, 35 GLuint source_id,
36 GLenum source_internal_format, 36 GLenum source_internal_format,
37 GLuint dest_id, 37 GLuint dest_id,
38 GLint dest_level,
39 GLenum dest_internal_format, 38 GLenum dest_internal_format,
40 GLsizei width, 39 GLsizei width,
41 GLsizei height, 40 GLsizei height,
42 bool flip_y, 41 bool flip_y,
43 bool premultiply_alpha, 42 bool premultiply_alpha,
44 bool unpremultiply_alpha); 43 bool unpremultiply_alpha);
45 44
45 void DoCopySubTexture(const gles2::GLES2Decoder* decoder,
46 GLenum source_target,
47 GLuint source_id,
48 GLenum source_internal_format,
49 GLuint dest_id,
50 GLenum dest_internal_format,
51 GLint xoffset,
52 GLint yoffset,
53 GLsizei dest_width,
54 GLsizei dest_height,
55 GLsizei source_width,
56 GLsizei source_height,
57 bool flip_y,
58 bool premultiply_alpha,
59 bool unpremultiply_alpha);
60
46 // This will apply a transform on the source texture before copying to 61 // This will apply a transform on the source texture before copying to
47 // destination texture. 62 // destination texture.
48 void DoCopyTextureWithTransform(const gles2::GLES2Decoder* decoder, 63 void DoCopyTextureWithTransform(const gles2::GLES2Decoder* decoder,
49 GLenum source_target, 64 GLenum source_target,
50 GLuint source_id, 65 GLuint source_id,
51 GLuint dest_id, 66 GLuint dest_id,
52 GLint dest_level,
53 GLsizei width, 67 GLsizei width,
54 GLsizei height, 68 GLsizei height,
55 bool flip_y, 69 bool flip_y,
56 bool premultiply_alpha, 70 bool premultiply_alpha,
57 bool unpremultiply_alpha, 71 bool unpremultiply_alpha,
58 const GLfloat transform_matrix[16]); 72 const GLfloat transform_matrix[16]);
59 73
74 void DoCopySubTextureWithTransform(const gles2::GLES2Decoder* decoder,
75 GLenum source_target,
76 GLuint source_id,
77 GLuint dest_id,
78 GLint xoffset,
79 GLint yoffset,
80 GLsizei dest_width,
81 GLsizei dest_height,
82 GLsizei source_width,
83 GLsizei source_height,
84 bool flip_y,
85 bool premultiply_alpha,
86 bool unpremultiply_alpha,
87 const GLfloat transform_matrix[16]);
88
60 // The attributes used during invocation of the extension. 89 // The attributes used during invocation of the extension.
61 static const GLuint kVertexPositionAttrib = 0; 90 static const GLuint kVertexPositionAttrib = 0;
62 91
63 private: 92 private:
64 struct ProgramInfo { 93 struct ProgramInfo {
65 ProgramInfo() 94 ProgramInfo()
66 : program(0u), 95 : program(0u),
67 matrix_handle(0u), 96 matrix_handle(0u),
68 half_size_handle(0u), 97 half_size_handle(0u),
69 sampler_handle(0u) {} 98 sampler_handle(0u) {}
70 99
71 GLuint program; 100 GLuint program;
72 GLuint matrix_handle; 101 GLuint matrix_handle;
73 GLuint half_size_handle; 102 GLuint half_size_handle;
74 GLuint sampler_handle; 103 GLuint sampler_handle;
75 }; 104 };
76 105
106 void DoCopyTextureInternal(const gles2::GLES2Decoder* decoder,
107 GLenum source_target,
108 GLuint source_id,
109 GLuint dest_id,
110 GLint xoffset,
111 GLint yoffset,
112 GLsizei dest_width,
113 GLsizei dest_height,
114 GLsizei source_width,
115 GLsizei source_height,
116 bool flip_y,
117 bool premultiply_alpha,
118 bool unpremultiply_alpha,
119 const GLfloat transform_matrix[16]);
120
77 bool initialized_; 121 bool initialized_;
78 typedef std::vector<GLuint> ShaderVector; 122 typedef std::vector<GLuint> ShaderVector;
79 ShaderVector vertex_shaders_; 123 ShaderVector vertex_shaders_;
80 ShaderVector fragment_shaders_; 124 ShaderVector fragment_shaders_;
81 typedef std::pair<int, int> ProgramMapKey; 125 typedef std::pair<int, int> ProgramMapKey;
82 typedef base::hash_map<ProgramMapKey, ProgramInfo> ProgramMap; 126 typedef base::hash_map<ProgramMapKey, ProgramInfo> ProgramMap;
83 ProgramMap programs_; 127 ProgramMap programs_;
84 GLuint buffer_id_; 128 GLuint buffer_id_;
85 GLuint framebuffer_; 129 GLuint framebuffer_;
86 130
87 DISALLOW_COPY_AND_ASSIGN(CopyTextureCHROMIUMResourceManager); 131 DISALLOW_COPY_AND_ASSIGN(CopyTextureCHROMIUMResourceManager);
88 }; 132 };
89 133
90 } // namespace gpu. 134 } // namespace gpu.
91 135
92 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_COPY_TEXTURE_CHROMIUM_H_ 136 #endif // GPU_COMMAND_BUFFER_SERVICE_GLES2_CMD_COPY_TEXTURE_CHROMIUM_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/common/id_allocator_test.cc ('k') | gpu/command_buffer/service/gles2_cmd_copy_texture_chromium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698