Skip to content
Snippets Groups Projects
Commit f9fdb431 authored by Utkarsh Ayachit's avatar Utkarsh Ayachit Committed by Code Review
Browse files

Merge topic 'export_vtkgl_LoadExtension' into master

09db49da Export vtkgl::LoadExtension and vtkgl::GLVersionExtensionsString.
parents 278c7c14 09db49da
No related branches found
No related tags found
No related merge requests found
......@@ -690,10 +690,10 @@ static void WriteCode(ostream &hfile, ostream &cxxfile)
ConstantsAlreadyWritten.clear();
WriteClassDeclarationGuts(hfile, Extension::GL);
hfile << endl << " // Method to load functions for a particular extension.";
hfile << endl << " int LoadExtension(const char *name, "
hfile << endl << " extern int VTKRENDERINGOPENGL_EXPORT LoadExtension(const char *name, "
<< "vtkOpenGLExtensionManager *manager);" << endl;
hfile << endl << " // Strings containing special version extensions.";
hfile << endl << " const char *GLVersionExtensionsString();" << endl;
hfile << endl << " extern VTKRENDERINGOPENGL_EXPORT const char *GLVersionExtensionsString();" << endl;
hfile << endl << " const char *GLXVersionExtensionsString();" << endl;
hfile << "}" << endl;
Extension::WriteSupportWrapperEnd(hfile, Extension::GL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment