diff options
Diffstat (limited to 'src/lib/ector/gl/ector_gl_buffer_base.eo')
-rw-r--r-- | src/lib/ector/gl/ector_gl_buffer_base.eo | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/lib/ector/gl/ector_gl_buffer_base.eo b/src/lib/ector/gl/ector_gl_buffer_base.eo index 87fad09479..2a1718246b 100644 --- a/src/lib/ector/gl/ector_gl_buffer_base.eo +++ b/src/lib/ector/gl/ector_gl_buffer_base.eo | |||
@@ -22,7 +22,7 @@ mixin Ector.GL.Buffer.Base (Ector.Buffer) | |||
22 | ]] | 22 | ]] |
23 | get {} | 23 | get {} |
24 | values { | 24 | values { |
25 | is_whole: bool; | 25 | is_whole: bool; [[$true if the image is covering the whole GL texture, $false otherwise]] |
26 | } | 26 | } |
27 | } | 27 | } |
28 | @property vertices { | 28 | @property vertices { |
@@ -43,17 +43,17 @@ mixin Ector.GL.Buffer.Base (Ector.Buffer) | |||
43 | params { | 43 | params { |
44 | texid: int; [[GL texture ID]] | 44 | texid: int; [[GL texture ID]] |
45 | fboid: int; [[Framebuffer object ID]] | 45 | fboid: int; [[Framebuffer object ID]] |
46 | cspace: Efl.Gfx.Colorspace; | 46 | cspace: Efl.Gfx.Colorspace; [[Colorspace]] |
47 | imw: int; | 47 | imw: int; [[Image width]] |
48 | imh: int; | 48 | imh: int; [[Image height]] |
49 | tx: int; | 49 | tx: int; [[Texture X coordinate]] |
50 | ty: int; | 50 | ty: int; [[Texture Y coordinate]] |
51 | tw: int; | 51 | tw: int; [[Texture width]] |
52 | th: int; | 52 | th: int; [[Texture height]] |
53 | l: int; | 53 | l: int; [[Left padding]] |
54 | r: int; | 54 | r: int; [[Right padding]] |
55 | t: int; | 55 | t: int; [[Top padding]] |
56 | b: int; | 56 | b: int; [[Bottom padding]] |
57 | } | 57 | } |
58 | } | 58 | } |
59 | } | 59 | } |