Skip to content

Commit 2a5a70f

Browse files
committed
DetectGLVendors: bikeshedding wording and whitespace
1 parent 767835f commit 2a5a70f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/engine/renderer/DetectGLVendors.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ void DetectGLVendors(
138138
{ "nouveau", { glDriverVendor_t::MESA, glHardwareVendor_t::NVIDIA } },
139139
// Proprietary Nvidia drivers on all systems like Linux, Windows, and macOS.
140140
{ "NVIDIA Corporation", { glDriverVendor_t::NVIDIA, glHardwareVendor_t::NVIDIA } },
141-
// Moore Threads drivers on Linux and Windows.
141+
// Proprietary Moore Threads drivers on Linux and Windows.
142142
{ "Moore Threads", { glDriverVendor_t::MTHREADS, glHardwareVendor_t::MTHREADS } },
143143
// Proprietary Zhaoxin driver on Linux.
144144
{ "Shanghai Zhaoxin Semiconductor Co., Ltd.", { glDriverVendor_t::ZHAOXIN, glHardwareVendor_t::ZHAOXIN } },
@@ -149,8 +149,8 @@ void DetectGLVendors(
149149
auto it = vendorDriverHardware.find( vendorString );
150150
if ( it != vendorDriverHardware.end() )
151151
{
152-
driverVendor = it->second.first;
153-
hardwareVendor = it->second.second;
152+
driverVendor = it->second.first;
153+
hardwareVendor = it->second.second;
154154
return;
155155
}
156156

0 commit comments

Comments
 (0)