(self)
| 38 | # |
| 39 | class PWPostProcessing(PWConstants): |
| 40 | def __init__(self): |
| 41 | self.buffer = 0 |
| 42 | self.color_texture = 0 |
| 43 | self.depth_texture = 0 |
| 44 | self.__createPassBuffer() |
| 45 | |
| 46 | # -------- |
| 47 | |
| 48 | self.quad = PWVaoData() |
| 49 | self.__createPassQuad() |
| 50 | |
| 51 | |
| 52 | def getColorAttachment(self): |
nothing calls this directly
no test coverage detected