View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000032 | Gorilla3D | Bug Reports | public | 2019-10-05 21:42 | 2019-11-06 09:34 |
Reporter | administrator | Assigned To | administrator | ||
Priority | normal | Severity | major | Reproducibility | sometimes |
Status | resolved | Resolution | fixed | ||
Product Version | 0.8.1.x | ||||
Target Version | 0.8.1.x | Fixed in Version | 0.8.1.x | ||
Summary | 0000032: RenderPass method is not implemented correctly | ||||
Description | In next release TRenderPassMethod will support 4 methods for precise distinction: RenderlistToContext, RenderListToFBO, RectToContext and RectToFBO. In previous version the "ToContext" did not allow to render a rect shader to render pass FBO. Everything was written to default context FBO. Therefor concatination of renderpasses was not possible. | ||||
Tags | No tags attached. | ||||
Delphi-Version | |||||
OpenGLVersion | |||||
|
TRenderPassMethod type was changed to: TRenderPassMethod = (RenderListToContext, RenderListToFBO, RectToContext, RectToFBO); RenderListToContext - will render all objects in renderlist with the provided render pass material. The output will be written to the default context FBO. It doesn't matter if you declare and attach an individual FBO in your renderpass, because it will be ignored. RenderListToFBO - will render all objects in renderlist with the provided render pass material. The output will be written to the FBO of your renderpass. RectToContext - will render on basis of the latest context FBO or on a attached renderpass output. The output will be written to the default context FBO. It doesn't matter if you declare and attach an individual FBO in your renderpass, because it will be ignored. RectToFBO - will render on basis of the latest context FBO or on a attached renderpass output. The output will be written to the FBO of your renderpass. |
Date Modified | Username | Field | Change |
---|---|---|---|
2019-10-05 21:42 | administrator | New Issue | |
2019-10-05 21:42 | administrator | Status | new => assigned |
2019-10-05 21:42 | administrator | Assigned To | => administrator |
2019-11-06 09:34 | administrator | Status | assigned => resolved |
2019-11-06 09:34 | administrator | Resolution | open => fixed |
2019-11-06 09:34 | administrator | Fixed in Version | => 0.8.1.x |
2019-11-06 09:34 | administrator | Note Added: 0000023 |