Home
last modified time | relevance | path

Searched refs:perspectiveCorrection (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/src/Main/
DSwiftConfig.hpp44 bool perspectiveCorrection; member
DSwiftConfig.cpp356 …html += "<option value='0'" + (config.perspectiveCorrection == 0 ? selected : empty) + ">Off</opti… in page()
357 …html += "<option value='1'" + (config.perspectiveCorrection == 1 ? selected : empty) + ">On (defau… in page()
600 config.perspectiveCorrection = integer != 0; in parsePost()
731 config.perspectiveCorrection = ini.getBoolean("Quality", "PerspectiveCorrection", true); in readConfiguration()
790 ini.addValue("Quality", "PerspectiveCorrection", itoa(config.perspectiveCorrection)); in writeConfiguration()
/external/swiftshader/src/Renderer/
DContext.cpp28 extern bool perspectiveCorrection;
1190 if(!perspectiveCorrection) in perspectiveActive()
DPixelProcessor.hpp306 void setPerspectiveCorrection(bool perspectiveCorrection);
DRenderer.hpp53 extern bool perspectiveCorrection;
DPixelProcessor.cpp32 extern bool perspectiveCorrection;
934 perspectiveCorrection = perspectiveEnable; in setPerspectiveCorrection()
DRenderer.cpp73 bool perspectiveCorrection = true; variable
2889 setPerspectiveCorrection(configuration.perspectiveCorrection); in updateConfiguration()