1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
kgv 8625ef7e94 0025282: Visualization, OpenGl_PrimitiveArray - provide built-in GLSL programs as alternative to FFP
Enumerations Visual3d_TypeOfModel, V3d_TypeOfShadingModel.
- Remove unused values V3d_MULTICOLOR, V3d_HIDDEN, Visual3d_TOM_INTERP_COLOR.
- Add per-pixel shading mode - V3d_PHONG, Visual3d_TOM_FRAGMENT.

Draw Harness command vrenderparams.
Add option -shadingModel to setup Shading Model.

OpenGl_Caps::ffpEnable - new option to switch FFP/built-in GLSL programs.
OpenGl_ShaderManager - add built-in GLSL programs.

Draw Harness command vcaps.
- Fix command syntax to meet coding rules.
- Add option -ffp to activate/disable built-in GLSL programs.

GLSL API changes.
- Rename vertex attribute occColor -> occVertColor.
- Introduce vec4 occColor uniform variable for light-less shaders.
- Introduce float occPointSize uniform variable for marker programs.

OpenGl_VertexBuffer::bindAttribute() - activate normalization for non-GL_FLOAT types,
since color attribute is defined as 32-bit vector of 4 unsigned byte values.

OpenGl_Context - add methods SetColor4fv() and SetPointSize()
for parameters redirection to active GLSL program
(as alternative to glColor4fv() and glPointSize()).

OpenGl_ShaderProgram - define default precision for float types
in Fragment Shader within OpenGL ES 2.0+ context.

OpenGl_AspectMarker, initialize Aspect_TOM_O_POINT display list
in the same way as sprite texture.

OpenGl_Texture, do not use sized internal formats on OpenGL ES.
2014-10-02 14:29:19 +04:00
..
2012-03-06 10:17:06 +04:00

MFC samples

  1. Description of the tree structure:

|
|-- 01_Geometry                
|-- 02_Modeling
|-- 03_Viewer2d
|-- 04_Viewer3d                          	Projects and sources of samples
|-- 05_ImportExport 			   
|-- 06_Ocaf
|-- 07_Triangulation
|-- 08_HLR
|-- 09_Animation
|-- 10_Convert                        
|    
|-- All-vc"number".sln            			Auxilary utility project. It depends on all other sample
|                  			   projects, so when rebuilded it rebuilds all samples and 
|                   			   mfcsample library.
|
|-- Common 			Common source and header files for samples and
|    				   dynamic-link library mfcsample.dll.
| 
|-- Data            			Data files.
|
|-- mfcsample			Project for mfcsample.dll. This library is used by all 
|			 	   samples. It contains basic funcionality that commonly 
|				   needed in every OCC sample.
|
|
|-- env.bat       		This file is called from msvc.bat.
  1. Launching Open CASCADE Technology samples:

To run the Open CASCADE Technology samples:

execute run.bat [vc8|vc9|vc10|vc11|vc12] [win32|win64] [Release|Debug] [SampleName]

To run the Animation sample:

execute run.bat vc8 win32 Debug Animation

  1. Modifying and rebuilding samples:

You can modify, compile and launch all sample projects in MS Visual C++ at once:

execute msvc.bat [vc8|vc9|vc10|vc11|vc12] [win32|win64] [Release|Debug]

To run all sample projects in MS Visual C++ at once:

execute msvc.bat vc8 win32 Debug

Note: make sure your PATH environment variable contains a directory, msdev.exe is located in.