Пример #1
0
    def get_capture_options(self):
        opts = rd.CaptureOptions()

        # Ref all resources to pull in the image with unbound data
        opts.refAllResources = True

        return opts
Пример #2
0
    def get_capture_options(self):
        """
        Method to overload if you want to override the capture options used.

        :return: The renderdoc.CaptureOptions to use.
        """

        return rd.CaptureOptions()
Пример #3
0
    def get_capture_options(self):
        # Ensure we enable API validation since the test relies on being able to query it
        ret = rd.CaptureOptions()

        ret.apiValidation = True
        ret.debugOutputMute = False

        return ret
Пример #4
0
 def get_capture_options(self):
     ret = rd.CaptureOptions()
     ret.captureCallstacks = True
     return ret