This file is indexed.

/usr/share/pyshared/glitch/cairo/draw.py is in python-glitch 0.6-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"A texture using Cairo for 2D drawing."

import cairo

import OpenGL.GL as gl

from glitch.texture import Texture

class CairoTexture(Texture):
    "A texture using Cairo for 2D drawing."

    y_flip = True

    def __init__(self, width, height):
        # Data is created later.
        Texture.__init__(self, width, height, None)
        self.surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, width, height)

        # XXX: This assumes little-endian.
        self.format = gl.GL_BGRA

    def draw_cairo(self, cr):
        """Called when the texture needs to be rendered.

        @param cr: The Cairo context to draw using.
        """

        cr.set_source_rgba(0, 0, 0, 0)
        cr.paint()

        cr.set_source_rgb(1, 0, 0)
        cr.move_to(0, 0)
        cr.line_to(self.width, 0)
        cr.line_to(self.width, self.height)
        cr.line_to(0, self.height)
        cr.line_to(0, 0)
        cr.set_line_width(20)
        cr.stroke()

    def upload(self, ctx):
        cr = cairo.Context(self.surface)
        self.draw_cairo(cr)
        # XXX: Eww.
        self.data = str(self.surface.get_data())
        Texture.upload(self, ctx)