Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix vendor retrieval for Tegra in VideoOGL.
  • Loading branch information
lioncash committed Jul 3, 2013
1 parent 03a47d3 commit 3de5b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Plugins/Plugin_VideoOGL/Src/Render.cpp
Expand Up @@ -289,7 +289,7 @@ void InitDriverInfo()
vendor = DriverDetails::VENDOR_QUALCOMM;
else if (svendor == "Imagination Technologies")
vendor = DriverDetails::VENDOR_IMGTEC;
else if (svendor == "NVIDIA Corporation" && srenderer != "NVIDIA Tegra")
else if (svendor == "NVIDIA Corporation" && srenderer == "NVIDIA Tegra")
vendor = DriverDetails::VENDOR_TEGRA;
else if (svendor == "Vivante Corporation")
vendor = DriverDetails::VENDOR_VIVANTE;
Expand Down

0 comments on commit 3de5b1b

Please sign in to comment.