Difference between revisions of "Ident TODO"

From CEGUI Wiki - Crazy Eddie's GUI System (Open Source)
Jump to: navigation, search
(CEGUI General)
Line 6: Line 6:
 
* Improve OpenGL Renderer(s) extra states functions (and also rename it):
 
* Improve OpenGL Renderer(s) extra states functions (and also rename it):
 
** Add and also do the restore for: glUseProgram(0); glBindVertexArray(0); glBindBuffer(GL_ARRAY_BUFFER, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER,0);
 
** Add and also do the restore for: glUseProgram(0); glBindVertexArray(0); glBindBuffer(GL_ARRAY_BUFFER, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER,0);
 +
** http://cegui.org.uk/forum/viewtopic.php?f=10&t=6752&sid=6bb9fb4a04417b28278538ed3f89af57&p=31632#p31632
 +
** What about blending and scissor test?
  
 
== SVG ==
 
== SVG ==
 
* Need to implement MSAA in all Renderers as alternative for the alpha blending AA
 
* Need to implement MSAA in all Renderers as alternative for the alpha blending AA
 
* Need to fix D3D11 Rendering of SVG demo
 
* Need to fix D3D11 Rendering of SVG demo

Revision as of 19:35, 9 August 2014

CEGUI General

  • Texture filtering should use trilinear filtering, instead of bilinear for magnification in some (!) cases. Need to figure out which cases need which and implement a switch, etc
  • Replacing ColourRect with Colour would allow us to strip all per-vertex attributes for colours and allows us to use a highly performant uniform instead. People who want fancy fonts etc should just use Bitmap Fonts and Widgets can simply be changed to using different Images instead of applying Gradients with ColourRect there as well.
  • setAlpha apparently triggers recreation of GeometryBuffer should be replaced by a uniform instead of applying it to the per-vertex attributes

SVG

  • Need to implement MSAA in all Renderers as alternative for the alpha blending AA
  • Need to fix D3D11 Rendering of SVG demo