mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Generation of header files from resource files was added to CMake and genproj procedures. Message_MsgFile has been extended with new method ::LoadFromString() for loading messages from embedded resources. Message_MsgFile::LoadFromString() is now a preferred way for loading message resources by application as alternative to environment variables. TObje/TObj.msg is now embedded into TObj_Application.cxx. TObj_Application now loads its global messages on instantiation of the first class instance. UnitsAPI/Lexi_Expr.dat now completely embedded into Units_Lexicon.cxx. UnitsAPI/Units.dat now embedded into Units_UnitsDictionary.cxx but can be regenerated from resource file. The definition of the following units have been removed: benne à charbon, calorie (diététique). Unused message files XSMessage/IGES.us and IGES.fr have been removed. Related code IGESData.cxx has been removed as well. XSMessage/XSTEP.us is now embedded into Interface_StaticStandards.cxx and used for fallback initialization in case when file resources defined by CSF_XSMessage environment variable are missing. SHMessage/SHAPE.us is now embedded into ShapeExtend.cxx and used for fallback initialization in case when file resources defined by CSF_XHMessage environment variable are missing. Duplicating code has been removed from ShapeProcess_OperLibrary.cxx. Shaders/Declarations.glsl and Shaders/DeclarationsImpl.glsl are now embedded into OpenGl_ShaderProgram.cxx. CSF_ShadersDirectory is no more required for using OCCT 3D Viewer. Ray-Tracing GLSL programs from Shaders are now embedded into OpenGl_View_Raytrace.cxx. File resources are still used instead of embedded programs when CSF_ShadersDirectory is defined, but this functionality is intended for OCCT development. Enumeration Graphic3d_ShaderProgram::ShaderName_Phong demonstrating custom GLSL program usage has been removed.
62 lines
3.8 KiB
Plaintext
62 lines
3.8 KiB
Plaintext
// This file has been automatically generated from resource file src/Shaders/DeclarationsImpl.glsl
|
|
|
|
static const char Shaders_DeclarationsImpl_glsl[] =
|
|
"// Created on: 2013-10-10\n"
|
|
"// Created by: Denis BOGOLEPOV\n"
|
|
"// Copyright (c) 2013-2014 OPEN CASCADE SAS\n"
|
|
"//\n"
|
|
"// This file is part of Open CASCADE Technology software library.\n"
|
|
"//\n"
|
|
"// This library is free software; you can redistribute it and/or modify it under\n"
|
|
"// the terms of the GNU Lesser General Public License version 2.1 as published\n"
|
|
"// by the Free Software Foundation, with special exception defined in the file\n"
|
|
"// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT\n"
|
|
"// distribution for complete text of the license and disclaimer of any warranty.\n"
|
|
"//\n"
|
|
"// Alternatively, this file may be used under the terms of Open CASCADE\n"
|
|
"// commercial license or contractual agreement.\n"
|
|
"\n"
|
|
"// This file includes implementation of common functions and properties accessors\n"
|
|
"\n"
|
|
"// arrays of light sources\n"
|
|
"uniform THE_PREC_ENUM ivec2 occLightSourcesTypes[THE_MAX_LIGHTS]; //!< packed light sources types\n"
|
|
"uniform vec4 occLightSources[THE_MAX_LIGHTS * 4]; //!< packed light sources parameters\n"
|
|
"\n"
|
|
"// light source properties accessors\n"
|
|
"int occLight_Type (in int theId) { return occLightSourcesTypes[theId].x; }\n"
|
|
"int occLight_IsHeadlight (in int theId) { return occLightSourcesTypes[theId].y; }\n"
|
|
"vec4 occLight_Diffuse (in int theId) { return occLightSources[theId * 4 + 0]; }\n"
|
|
"vec4 occLight_Specular (in int theId) { return occLightSources[theId * 4 + 0]; }\n"
|
|
"vec4 occLight_Position (in int theId) { return occLightSources[theId * 4 + 1]; }\n"
|
|
"vec4 occLight_SpotDirection (in int theId) { return occLightSources[theId * 4 + 2]; }\n"
|
|
"float occLight_ConstAttenuation (in int theId) { return occLightSources[theId * 4 + 3].x; }\n"
|
|
"float occLight_LinearAttenuation (in int theId) { return occLightSources[theId * 4 + 3].y; }\n"
|
|
"float occLight_SpotCutOff (in int theId) { return occLightSources[theId * 4 + 3].z; }\n"
|
|
"float occLight_SpotExponent (in int theId) { return occLightSources[theId * 4 + 3].w; }\n"
|
|
"\n"
|
|
"// material state\n"
|
|
"uniform vec4 occFrontMaterial[5];\n"
|
|
"uniform vec4 occBackMaterial[5];\n"
|
|
"\n"
|
|
"// front material properties accessors\n"
|
|
"vec4 occFrontMaterial_Ambient(void) { return occFrontMaterial[0]; }\n"
|
|
"vec4 occFrontMaterial_Diffuse(void) { return occFrontMaterial[1]; }\n"
|
|
"vec4 occFrontMaterial_Specular(void) { return occFrontMaterial[2]; }\n"
|
|
"vec4 occFrontMaterial_Emission(void) { return occFrontMaterial[3]; }\n"
|
|
"float occFrontMaterial_Shininess(void) { return occFrontMaterial[4].x; }\n"
|
|
"float occFrontMaterial_Transparency(void) { return occFrontMaterial[4].y; }\n"
|
|
"\n"
|
|
"// back material properties accessors\n"
|
|
"vec4 occBackMaterial_Ambient(void) { return occBackMaterial[0]; }\n"
|
|
"vec4 occBackMaterial_Diffuse(void) { return occBackMaterial[1]; }\n"
|
|
"vec4 occBackMaterial_Specular(void) { return occBackMaterial[2]; }\n"
|
|
"vec4 occBackMaterial_Emission(void) { return occBackMaterial[3]; }\n"
|
|
"float occBackMaterial_Shininess(void) { return occBackMaterial[4].x; }\n"
|
|
"float occBackMaterial_Transparency(void) { return occBackMaterial[4].y; }\n"
|
|
"\n"
|
|
"// 2D texture coordinates transformation\n"
|
|
"vec2 occTextureTrsf_Translation(void) { return occTexTrsf2d[0].xy; }\n"
|
|
"vec2 occTextureTrsf_Scale(void) { return occTexTrsf2d[0].zw; }\n"
|
|
"float occTextureTrsf_RotationSin(void) { return occTexTrsf2d[1].x; }\n"
|
|
"float occTextureTrsf_RotationCos(void) { return occTexTrsf2d[1].y; }\n";
|