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

Side by Side Diff: gpu/command_buffer/common/gles2_cmd_utils.h

Issue 1781093002: Add CONTEXT_TYPE_OPENGLES2_PEPPER (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 // This file is here so other GLES2 related files can have a common set of 5 // This file is here so other GLES2 related files can have a common set of
6 // includes where appropriate. 6 // includes where appropriate.
7 7
8 #ifndef GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_UTILS_H_ 8 #ifndef GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_UTILS_H_
9 #define GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_UTILS_H_ 9 #define GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_UTILS_H_
10 10
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 private: 258 private:
259 std::string base_name_; 259 std::string base_name_;
260 int element_index_; 260 int element_index_;
261 DISALLOW_COPY_AND_ASSIGN(GLSLArrayName); 261 DISALLOW_COPY_AND_ASSIGN(GLSLArrayName);
262 }; 262 };
263 263
264 enum ContextType { 264 enum ContextType {
265 CONTEXT_TYPE_WEBGL1, 265 CONTEXT_TYPE_WEBGL1,
266 CONTEXT_TYPE_WEBGL2, 266 CONTEXT_TYPE_WEBGL2,
267 CONTEXT_TYPE_OPENGLES2, 267 CONTEXT_TYPE_OPENGLES2,
268 CONTEXT_TYPE_OPENGLES3 268 CONTEXT_TYPE_OPENGLES3,
269 CONTEXT_TYPE_OPENGLES2_PEPPER,
269 }; 270 };
270 271
271 struct GLES2_UTILS_EXPORT ContextCreationAttribHelper { 272 struct GLES2_UTILS_EXPORT ContextCreationAttribHelper {
272 ContextCreationAttribHelper(); 273 ContextCreationAttribHelper();
273 ContextCreationAttribHelper(const ContextCreationAttribHelper& other); 274 ContextCreationAttribHelper(const ContextCreationAttribHelper& other);
274 275
275 void Serialize(std::vector<int32_t>* attribs) const; 276 void Serialize(std::vector<int32_t>* attribs) const;
276 bool Parse(const std::vector<int32_t>& attribs); 277 bool Parse(const std::vector<int32_t>& attribs);
277 278
278 // -1 if invalid or unspecified. 279 // -1 if invalid or unspecified.
(...skipping 10 matching lines...) Expand all
289 bool fail_if_major_perf_caveat; 290 bool fail_if_major_perf_caveat;
290 bool lose_context_when_out_of_memory; 291 bool lose_context_when_out_of_memory;
291 ContextType context_type; 292 ContextType context_type;
292 }; 293 };
293 294
294 } // namespace gles2 295 } // namespace gles2
295 } // namespace gpu 296 } // namespace gpu
296 297
297 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_UTILS_H_ 298 #endif // GPU_COMMAND_BUFFER_COMMON_GLES2_CMD_UTILS_H_
298 299
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698