Skip to content

Commit 1d1af87

Browse files
committed
DetectGLVendors: bikeshedding wording and whitespace
1 parent ec5ce7a commit 1d1af87

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
@@ -141,7 +141,7 @@ void DetectGLVendors(
141141
{ "nouveau", { glDriverVendor_t::MESA, glHardwareVendor_t::NVIDIA } },
142142
// Proprietary Nvidia drivers on all systems like Linux, Windows, and macOS.
143143
{ "NVIDIA Corporation", { glDriverVendor_t::NVIDIA, glHardwareVendor_t::NVIDIA } },
144-
// Moore Threads drivers on Linux and Windows.
144+
// Proprietary Moore Threads drivers on Linux and Windows.
145145
{ "Moore Threads", { glDriverVendor_t::MTHREADS, glHardwareVendor_t::MTHREADS } },
146146
// Proprietary Zhaoxin driver on Linux.
147147
{ "Shanghai Zhaoxin Semiconductor Co., Ltd.", { glDriverVendor_t::ZHAOXIN, glHardwareVendor_t::ZHAOXIN } },
@@ -152,8 +152,8 @@ void DetectGLVendors(
152152
auto it = vendorDriverHardware.find( vendorString );
153153
if ( it != vendorDriverHardware.end() )
154154
{
155-
driverVendor = it->second.first;
156-
hardwareVendor = it->second.second;
155+
driverVendor = it->second.first;
156+
hardwareVendor = it->second.second;
157157
return;
158158
}
159159

0 commit comments

Comments
 (0)