Rename colour to color in public API code

* Following the principle of least surprise, color tends to be more
  commonly used in APIs and graphics code even outside the USA.
This commit is contained in:
baldurk
2017-04-18 14:57:37 +01:00
parent d94f387399
commit 637d4089e2
47 changed files with 149 additions and 150 deletions
+2 -2
View File
@@ -82,9 +82,9 @@ public:
{
m_Proxy->GetOutputWindowDimensions(id, w, h);
}
void ClearOutputWindowColour(uint64_t id, float col[4])
void ClearOutputWindowColor(uint64_t id, float col[4])
{
m_Proxy->ClearOutputWindowColour(id, col);
m_Proxy->ClearOutputWindowColor(id, col);
}
void ClearOutputWindowDepth(uint64_t id, float depth, uint8_t stencil)
{