Example #1
0
    def createFrameBufferObject(self, width: int,
                                height: int) -> FrameBufferObject:
        """Create a FrameBuffer Object.

        This should return an implementation-specifc FrameBufferObject subclass.
        """
        return FrameBufferObject(width, height)
Example #2
0
 def createFrameBufferObject(self, width: int,
                             height: int) -> FrameBufferObject:
     return FrameBufferObject(width, height)