Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
f2cabc81
Commit
f2cabc81
authored
24 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
Bug fix for newer versions of opengl32.dll on Windows
parent
39de4e73
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Graphics/Draw.cpp
+5
-1
5 additions, 1 deletion
Graphics/Draw.cpp
README.txt
+10
-7
10 additions, 7 deletions
README.txt
with
15 additions
and
8 deletions
Graphics/Draw.cpp
+
5
−
1
View file @
f2cabc81
// $Id: Draw.cpp,v 1.2
2
2001-02-
0
3 1
3:10:26
geuzaine Exp $
// $Id: Draw.cpp,v 1.2
3
2001-02-
2
3 1
9:51:11
geuzaine Exp $
#include
"Gmsh.h"
#include
"Gmsh.h"
#include
"GmshUI.h"
#include
"GmshUI.h"
...
@@ -25,7 +25,11 @@ void Draw3d(void){
...
@@ -25,7 +25,11 @@ void Draw3d(void){
}
}
else
{
else
{
glDisable
(
GL_BLEND
);
glDisable
(
GL_BLEND
);
#ifndef WIN32
// Merde de bug dans les nouvelles dll opengl Windows (ATI Rage
// Mobility, NVIDIA, etc.)
glDisable
(
GL_ALPHA
);
glDisable
(
GL_ALPHA
);
#endif
}
}
glPolygonOffset
(
1.0
,
1
);
glPolygonOffset
(
1.0
,
1
);
...
...
This diff is collapsed.
Click to expand it.
README.txt
+
10
−
7
View file @
f2cabc81
$Id: README.txt,v 1.
1
2001-02-
17 22:08:4
1 geuzaine Exp $
$Id: README.txt,v 1.
2
2001-02-
23 19:51:1
1 geuzaine Exp $
For Windows versions of Gmsh only:
For Windows versions of Gmsh only:
==================================
==================================
2) About opengl32.dll:
If a version of the OpenGL library opengl32.dll is already installed
on your system, you should remove the version shipped with
Gmsh. Failing to do so may result in incorrect behaviour of Gmsh (the
graphic window may stay "transparent", or Gmsh may even not run at
all).
1) About cygwin1.dll:
1) About cygwin1.dll:
If you plan to use other programs than Gmsh which depend on the
If you plan to use other programs than Gmsh which depend on the
cygwin1.dll library, please move the library from this directory to
cygwin1.dll library, please move the library from this directory to
the Windows system directory (usually C:\Windows\System\). Failing to
the Windows system directory (usually C:\Windows\System\). Failing to
do so
will
result in incorrect behaviour of all applications sharing
do so
may
result in incorrect behaviour of all applications sharing
the library.
the library.
2) About opengl32.dll:
If a version of the OpenGL library opengl32.dll is already installed
on your system, you can remove the version shipped with Gmsh.
3) About configuration files:
3) About configuration files:
Gmsh saves session information and default options on disk. The
Gmsh saves session information and default options on disk. The
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment