blob: 137cd78f444ac8eb18682e4f46e30770e678b935 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (c) 2010 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.
// This file defines constants and functions for the Pepper gles2 command
// buffers that fall outside the scope of OpenGL ES 2.0
#ifndef GPU_GLES2_GLES2_COMMAND_BUFFER_H_
#define GPU_GLES2_GLES2_COMMAND_BUFFER_H_
// constants for CommandBufferEnable command.
#define GLES2_ALLOW_BUFFERS_ON_MULTIPLE_TARGETS 0x0001
#endif // GPU_GLES2_GLES2_COMMAND_BUFFER_H_
|