• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2# (C) Copyright IBM Corporation 2004, 2005
3# All Rights Reserved.
4#
5# Permission is hereby granted, free of charge, to any person obtaining a
6# copy of this software and associated documentation files (the "Software"),
7# to deal in the Software without restriction, including without limitation
8# on the rights to use, copy, modify, merge, publish, distribute, sub
9# license, and/or sell copies of the Software, and to permit persons to whom
10# the Software is furnished to do so, subject to the following conditions:
11#
12# The above copyright notice and this permission notice (including the next
13# paragraph) shall be included in all copies or substantial portions of the
14# Software.
15#
16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.  IN NO EVENT SHALL
19# IBM AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22# IN THE SOFTWARE.
23#
24# Authors:
25#    Ian Romanick <idr@us.ibm.com>
26
27import gl_XML, glX_XML
28
29
30class glx_proto_item_factory(glX_XML.glx_item_factory):
31    """Factory to create GLX protocol oriented objects derived from gl_item."""
32
33    def create_type(self, element, context, category):
34        return glx_proto_type(element, context, category)
35
36
37class glx_proto_type(gl_XML.gl_type):
38    def __init__(self, element, context, category):
39        gl_XML.gl_type.__init__(self, element, context, category)
40
41        self.glx_name = element.get( "glx_name" )
42        return
43
44
45class glx_print_proto(gl_XML.gl_print_base):
46    def size_call(self, func, outputs_also = 0):
47        """Create C code to calculate 'compsize'.
48
49        Creates code to calculate 'compsize'.  If the function does
50        not need 'compsize' to be calculated, None will be
51        returned."""
52
53        compsize = None
54
55        for param in func.parameterIterator():
56            if outputs_also or not param.is_output:
57                if param.is_image():
58                    [dim, w, h, d, junk] = param.get_dimensions()
59
60                    compsize = '__glImageSize(%s, %s, %s, %s, %s, %s)' % (w, h, d, param.img_format, param.img_type, param.img_target)
61                    if not param.img_send_null:
62                        compsize = '(%s != NULL) ? %s : 0' % (param.name, compsize)
63
64                    return compsize
65
66                elif len(param.count_parameter_list):
67                    parameters = ",".join( param.count_parameter_list )
68                    compsize = "__gl%s_size(%s)" % (func.name, parameters)
69
70                    return compsize
71
72        return None
73
74
75    def emit_packet_size_calculation(self, f, bias):
76        # compsize is only used in the command size calculation if
77        # the function has a non-output parameter that has a non-empty
78        # counter_parameter_list.
79
80        compsize = self.size_call(f)
81        if compsize:
82            print('    const GLuint compsize = %s;' % (compsize))
83
84        if bias:
85            print('    const GLuint cmdlen = %s - %u;' % (f.command_length(), bias))
86        else:
87            print('    const GLuint cmdlen = %s;' % (f.command_length()))
88
89        #print ''
90        return compsize
91