~noskcaj/ubuntu/trusty/cogl/1.16.2

« back to all changes in this revision

Viewing changes to cogl/cogl-texture-rectangle-private.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha, Jeremy Bicha, Rico Tzschichholz
  • Date: 2013-02-26 16:43:25 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130226164325-t4z9rylpa20v0p6q
Tags: 1.13.4-0ubuntu1
[ Jeremy Bicha ]
* New upstream release
  - soname bump
* debian/control.in:
  - Bump minimum glib to 2.32
  - Drop obsolete breaks/replaces
  - Bump libclutter-1.0-dev breaks for soname transition
* debian/libcogl-dev.install:
  - Add some missing files

[ Rico Tzschichholz ]
* debian/control.in:
  - Build-depend on libxrandr-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
struct _CoglTextureRectangle
32
32
{
33
 
  CoglTexture     _parent;
 
33
  CoglTexture _parent;
34
34
 
35
 
  /* The internal format of the GL texture represented as a
 
35
  /* The internal format of the texture represented as a
36
36
     CoglPixelFormat */
37
 
  CoglPixelFormat format;
 
37
  CoglPixelFormat internal_format;
 
38
 
 
39
  /* TODO: factor out these OpenGL specific members into some form
 
40
   * of driver private state. */
 
41
 
38
42
  /* The internal format of the GL texture represented as a GL enum */
39
 
  GLenum          gl_format;
 
43
  GLenum gl_format;
40
44
  /* The texture object number */
41
 
  GLuint          gl_texture;
42
 
  int             width;
43
 
  int             height;
44
 
  GLenum          min_filter;
45
 
  GLenum          mag_filter;
46
 
  GLint           wrap_mode_s;
47
 
  GLint           wrap_mode_t;
48
 
  CoglBool        is_foreign;
 
45
  GLuint gl_texture;
 
46
  GLenum gl_legacy_texobj_min_filter;
 
47
  GLenum gl_legacy_texobj_mag_filter;
 
48
  GLint gl_legacy_texobj_wrap_mode_s;
 
49
  GLint gl_legacy_texobj_wrap_mode_t;
 
50
  CoglBool is_foreign;
49
51
};
50
52
 
51
53
CoglTextureRectangle *