Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2015-02-25 16:09:40 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-02-25 16:09:40 +0300
commit5d01db80350ac05e4e03325b6d982f2e46c04f4a (patch)
tree58bb1d3187e19839367c42c282fed99d539158b8 /intern
parentb5b359b48f7f35a79b3eec8534f363952485212d (diff)
Make the message even more clear in case someone does not know what GPU
is (we are talking about people who won't have installed a driver - anything is possible)
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_ContextWGL.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_ContextWGL.cpp b/intern/ghost/intern/GHOST_ContextWGL.cpp
index 31b5863f5a1..e9964293991 100644
--- a/intern/ghost/intern/GHOST_ContextWGL.cpp
+++ b/intern/ghost/intern/GHOST_ContextWGL.cpp
@@ -878,7 +878,7 @@ GHOST_TSuccess GHOST_ContextWGL::initializeDrawingContext()
if ((strcmp(vendor, "Microsoft Corporation") == 0 ||
strcmp(renderer, "GDI Generic") == 0) && version[0] == '1' && version[0] == '1')
{
- MessageBox(m_hWnd, "Your system does not use GPU acceleration.\n"
+ MessageBox(m_hWnd, "Your system does not use 3D hardware acceleration.\n"
"Such systems can cause stability problems in blender and they are unsupported.\n\n"
"This may is caused by:\n"
"* A missing or faulty graphics driver installation.\n"
@@ -886,7 +886,7 @@ GHOST_TSuccess GHOST_ContextWGL::initializeDrawingContext()
"* Accessing blender through a remote connection.\n"
"* Using blender through a virtual machine.\n\n"
"Disable this message in <User Preferences - Interface - Warn On Deprecated OpenGL>",
- "Blender - Can't detect GPU accelerated Driver!", MB_OK | MB_ICONWARNING);
+ "Blender - Can't detect 3D hardware accelerated Driver!", MB_OK | MB_ICONWARNING);
}
else if (version[0] == '1' && version[2] < '4') {
MessageBox(m_hWnd, "The OpenGL version provided by your graphics driver version is too low\n"