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

Side by Side Diff: ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h

Issue 6080012: Expose Map/UnmapTexSubImage2DCHROMIUM to pepper plugins (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 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.
4
5 #ifndef PPAPI_C_DEV_PPB_GLES_CHROMIUM_TEXTURE_MAPPING_DEV_H_
6 #define PPAPI_C_DEV_PPB_GLES_CHROMIUM_TEXTURE_MAPPING_DEV_H_
7
8 #include "ppapi/c/pp_resource.h"
9 #include "ppapi/c/dev/ppb_opengles_dev.h"
10
11 #define PPB_GLES_CHROMIUM_TEXTURE_MAPPING_DEV_INTERFACE "PPB_GLESChromiumTexture Mapping(Dev);0.1"
12
13 struct PPB_GLESChromiumTextureMapping_Dev {
14 // Maps the sub-image of a texture. 'level', 'xoffset', 'yoffset', 'width',
15 // 'height', 'format' and 'type' correspond to the similarly named parameters
16 // of TexSubImage2D, and define the sub-image region, as well as the format of
17 // the data. 'access' must be one of GL_READ_ONLY, GL_WRITE_ONLY or
18 // GL_READ_WRITE. If READ is included, the returned buffer will contain the
19 // pixel data for the sub-image. If WRITE is included, the pixel data for the
20 // sub-image will be updated to the contents of the buffer when
21 // UnmapTexSubImage2DCHROMIUM is called. NOTE: for a GL_WRITE_ONLY map, it
22 // means that all the values of the buffer must be written.
23 void* (*MapTexSubImage2DCHROMIUM)(
24 PP_Resource context,
25 GLenum target,
26 GLint level,
27 GLint xoffset,
28 GLint yoffset,
29 GLsizei width,
30 GLsizei height,
31 GLenum format,
32 GLenum type,
33 GLenum access);
34
35 // Unmaps the sub-image of a texture. If the sub-image was mapped with one of
36 // the WRITE accesses, the pixels are updated at this time to the contents of
37 // the buffer. 'mem' must be the pointer returned by MapTexSubImage2DCHROMIUM.
38 void (*UnmapTexSubImage2DCHROMIUM)(PP_Resource context, const void* mem);
39 };
40
41 #endif // PPAPI_C_DEV_PPB_GLES_CHROMIUM_TEXTURE_MAPPING_DEV_H_
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698