OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
heavydb.thrift.ttypes.TRawRenderPassDataResult Class Reference
+ Inheritance diagram for heavydb.thrift.ttypes.TRawRenderPassDataResult:
+ Collaboration diagram for heavydb.thrift.ttypes.TRawRenderPassDataResult:

Public Member Functions

def __init__
 
def read
 
def write
 
def validate
 
def __repr__
 
def __eq__
 
def __ne__
 

Public Attributes

 num_pixel_channels
 
 num_pixel_samples
 
 pixels
 
 row_ids_A
 
 row_ids_B
 
 table_ids
 
 accum_data
 
 accum_depth
 

Private Attributes

 __dict__
 

Detailed Description

Attributes:
 - num_pixel_channels
 - num_pixel_samples
 - pixels
 - row_ids_A
 - row_ids_B
 - table_ids
 - accum_data
 - accum_depth

Definition at line 5269 of file ttypes.py.

Constructor & Destructor Documentation

def heavydb.thrift.ttypes.TRawRenderPassDataResult.__init__ (   self,
  num_pixel_channels = None,
  num_pixel_samples = None,
  pixels = None,
  row_ids_A = None,
  row_ids_B = None,
  table_ids = None,
  accum_data = None,
  accum_depth = None 
)

Definition at line 5284 of file ttypes.py.

5285  def __init__(self, num_pixel_channels=None, num_pixel_samples=None, pixels=None, row_ids_A=None, row_ids_B=None, table_ids=None, accum_data=None, accum_depth=None,):
5286  self.num_pixel_channels = num_pixel_channels
5287  self.num_pixel_samples = num_pixel_samples
5288  self.pixels = pixels
5289  self.row_ids_A = row_ids_A
5290  self.row_ids_B = row_ids_B
5291  self.table_ids = table_ids
5292  self.accum_data = accum_data
5293  self.accum_depth = accum_depth

Member Function Documentation

def heavydb.thrift.ttypes.TRawRenderPassDataResult.__eq__ (   self,
  other 
)

Definition at line 5396 of file ttypes.py.

5397  def __eq__(self, other):
5398  return isinstance(other, self.__class__) and self.__dict__ == other.__dict__
def heavydb.thrift.ttypes.TRawRenderPassDataResult.__ne__ (   self,
  other 
)

Definition at line 5399 of file ttypes.py.

5400  def __ne__(self, other):
5401  return not (self == other)
5402 
def heavydb.thrift.ttypes.TRawRenderPassDataResult.__repr__ (   self)

Definition at line 5391 of file ttypes.py.

5392  def __repr__(self):
5393  L = ['%s=%r' % (key, value)
5394  for key, value in self.__dict__.items()]
5395  return '%s(%s)' % (self.__class__.__name__, ', '.join(L))
std::string join(T const &container, std::string const &delim)

+ Here is the call graph for this function:

def heavydb.thrift.ttypes.TRawRenderPassDataResult.read (   self,
  iprot 
)

Definition at line 5294 of file ttypes.py.

References heavydb.thrift.ttypes.TRawRenderPassDataResult.accum_data, heavydb.thrift.ttypes.TRawRenderPassDataResult.accum_depth, heavydb.thrift.ttypes.TRawRenderPassDataResult.num_pixel_channels, heavydb.thrift.ttypes.TRawRenderPassDataResult.num_pixel_samples, heavydb.thrift.ttypes.TRawRenderPassDataResult.pixels, heavydb.thrift.ttypes.TRawRenderPassDataResult.row_ids_A, heavydb.thrift.ttypes.TRawRenderPassDataResult.row_ids_B, and heavydb.thrift.ttypes.TRawRenderPassDataResult.table_ids.

5295  def read(self, iprot):
5296  if iprot._fast_decode is not None and isinstance(iprot.trans, TTransport.CReadableTransport) and self.thrift_spec is not None:
5297  iprot._fast_decode(self, iprot, [self.__class__, self.thrift_spec])
5298  return
5299  iprot.readStructBegin()
5300  while True:
5301  (fname, ftype, fid) = iprot.readFieldBegin()
5302  if ftype == TType.STOP:
5303  break
5304  if fid == 1:
5305  if ftype == TType.I32:
5306  self.num_pixel_channels = iprot.readI32()
5307  else:
5308  iprot.skip(ftype)
5309  elif fid == 2:
5310  if ftype == TType.I32:
5311  self.num_pixel_samples = iprot.readI32()
5312  else:
5313  iprot.skip(ftype)
5314  elif fid == 3:
5315  if ftype == TType.STRING:
5316  self.pixels = iprot.readBinary()
5317  else:
5318  iprot.skip(ftype)
5319  elif fid == 4:
5320  if ftype == TType.STRING:
5321  self.row_ids_A = iprot.readBinary()
5322  else:
5323  iprot.skip(ftype)
5324  elif fid == 5:
5325  if ftype == TType.STRING:
5326  self.row_ids_B = iprot.readBinary()
5327  else:
5328  iprot.skip(ftype)
5329  elif fid == 6:
5330  if ftype == TType.STRING:
5331  self.table_ids = iprot.readBinary()
5332  else:
5333  iprot.skip(ftype)
5334  elif fid == 7:
5335  if ftype == TType.STRING:
5336  self.accum_data = iprot.readBinary()
5337  else:
5338  iprot.skip(ftype)
5339  elif fid == 8:
5340  if ftype == TType.I32:
5341  self.accum_depth = iprot.readI32()
5342  else:
5343  iprot.skip(ftype)
5344  else:
5345  iprot.skip(ftype)
5346  iprot.readFieldEnd()
5347  iprot.readStructEnd()
def heavydb.thrift.ttypes.TRawRenderPassDataResult.validate (   self)

Definition at line 5388 of file ttypes.py.

5389  def validate(self):
5390  return
def heavydb.thrift.ttypes.TRawRenderPassDataResult.write (   self,
  oprot 
)

Definition at line 5348 of file ttypes.py.

References heavydb.thrift.ttypes.TRawRenderPassDataResult.accum_data, heavydb.thrift.ttypes.TRawRenderPassDataResult.accum_depth, heavydb.thrift.ttypes.TRawRenderPassDataResult.num_pixel_channels, heavydb.thrift.ttypes.TRawRenderPassDataResult.num_pixel_samples, heavydb.thrift.ttypes.TRawRenderPassDataResult.pixels, heavydb.thrift.ttypes.TRawRenderPassDataResult.row_ids_A, heavydb.thrift.ttypes.TRawRenderPassDataResult.row_ids_B, and heavydb.thrift.ttypes.TRawRenderPassDataResult.table_ids.

5349  def write(self, oprot):
5350  if oprot._fast_encode is not None and self.thrift_spec is not None:
5351  oprot.trans.write(oprot._fast_encode(self, [self.__class__, self.thrift_spec]))
5352  return
5353  oprot.writeStructBegin('TRawRenderPassDataResult')
5354  if self.num_pixel_channels is not None:
5355  oprot.writeFieldBegin('num_pixel_channels', TType.I32, 1)
5356  oprot.writeI32(self.num_pixel_channels)
5357  oprot.writeFieldEnd()
5358  if self.num_pixel_samples is not None:
5359  oprot.writeFieldBegin('num_pixel_samples', TType.I32, 2)
5360  oprot.writeI32(self.num_pixel_samples)
5361  oprot.writeFieldEnd()
5362  if self.pixels is not None:
5363  oprot.writeFieldBegin('pixels', TType.STRING, 3)
5364  oprot.writeBinary(self.pixels)
5365  oprot.writeFieldEnd()
5366  if self.row_ids_A is not None:
5367  oprot.writeFieldBegin('row_ids_A', TType.STRING, 4)
5368  oprot.writeBinary(self.row_ids_A)
5369  oprot.writeFieldEnd()
5370  if self.row_ids_B is not None:
5371  oprot.writeFieldBegin('row_ids_B', TType.STRING, 5)
5372  oprot.writeBinary(self.row_ids_B)
5373  oprot.writeFieldEnd()
5374  if self.table_ids is not None:
5375  oprot.writeFieldBegin('table_ids', TType.STRING, 6)
5376  oprot.writeBinary(self.table_ids)
5377  oprot.writeFieldEnd()
5378  if self.accum_data is not None:
5379  oprot.writeFieldBegin('accum_data', TType.STRING, 7)
5380  oprot.writeBinary(self.accum_data)
5381  oprot.writeFieldEnd()
5382  if self.accum_depth is not None:
5383  oprot.writeFieldBegin('accum_depth', TType.I32, 8)
5384  oprot.writeI32(self.accum_depth)
5385  oprot.writeFieldEnd()
5386  oprot.writeFieldStop()
5387  oprot.writeStructEnd()

Member Data Documentation

heavydb.thrift.ttypes.TRawRenderPassDataResult.__dict__
private

Definition at line 5397 of file ttypes.py.

Referenced by TableFunctionsFactory_node.Node.copy().

heavydb.thrift.ttypes.TRawRenderPassDataResult.accum_data

Definition at line 5291 of file ttypes.py.

Referenced by heavydb.thrift.ttypes.TRawRenderPassDataResult.read(), and heavydb.thrift.ttypes.TRawRenderPassDataResult.write().

heavydb.thrift.ttypes.TRawRenderPassDataResult.accum_depth

Definition at line 5292 of file ttypes.py.

Referenced by heavydb.thrift.ttypes.TRawRenderPassDataResult.read(), and heavydb.thrift.ttypes.TRawRenderPassDataResult.write().

heavydb.thrift.ttypes.TRawRenderPassDataResult.num_pixel_channels

Definition at line 5285 of file ttypes.py.

Referenced by heavydb.thrift.ttypes.TRawRenderPassDataResult.read(), and heavydb.thrift.ttypes.TRawRenderPassDataResult.write().

heavydb.thrift.ttypes.TRawRenderPassDataResult.num_pixel_samples

Definition at line 5286 of file ttypes.py.

Referenced by heavydb.thrift.ttypes.TRawRenderPassDataResult.read(), and heavydb.thrift.ttypes.TRawRenderPassDataResult.write().

heavydb.thrift.ttypes.TRawRenderPassDataResult.pixels

Definition at line 5287 of file ttypes.py.

Referenced by heavydb.thrift.ttypes.TRawRenderPassDataResult.read(), and heavydb.thrift.ttypes.TRawRenderPassDataResult.write().

heavydb.thrift.ttypes.TRawRenderPassDataResult.row_ids_A

Definition at line 5288 of file ttypes.py.

Referenced by heavydb.thrift.ttypes.TRawRenderPassDataResult.read(), and heavydb.thrift.ttypes.TRawRenderPassDataResult.write().

heavydb.thrift.ttypes.TRawRenderPassDataResult.row_ids_B

Definition at line 5289 of file ttypes.py.

Referenced by heavydb.thrift.ttypes.TRawRenderPassDataResult.read(), and heavydb.thrift.ttypes.TRawRenderPassDataResult.write().

heavydb.thrift.ttypes.TRawRenderPassDataResult.table_ids

Definition at line 5290 of file ttypes.py.

Referenced by heavydb.thrift.ttypes.TRawRenderPassDataResult.read(), and heavydb.thrift.ttypes.TRawRenderPassDataResult.write().


The documentation for this class was generated from the following file: