
osg学习
积累osg学习的点滴,助力软件产品开发
hankern
Code World,Cool Life
展开
-
osg学习(七十四)Type mismatch in arithmetic operation between ‘vec2‘ and ‘int‘
可能是手机端语法检查更严格glsl语句是这样的,再桌面端执行没有问题,在手机端执行会提示上述错误vec3 tmpNormal = osg_NormalMatrix*osg_Normal; tmpNormal = normalize(tmpNormal); texCoord = tmpNormal.xy/2+0.5;改为如下则手机端不再提示错误vec3 tmpNormal = osg_NormalMatrix*osg_Normal; tmpNormal = normalize(t原创 2022-03-22 07:55:09 · 419 阅读 · 0 评论 -
osg学习(七十三)缩放条件下计算gl_NormalMatrix
法线的变换方式不同于顶点的变换。顶点变换采用:gl_ModelViewProjectionMatrix * gl_Vertex法线变换采用:gl_NormalMatrix*gl_NormalNormalMatrix是ModelView矩阵逆的转置,由于gl_ModelViewProjectionMatrix 考虑了旋转、缩放、平移等因素,因此gl_NormalMatrix也考虑了旋转、缩放、平移等因素。参考:Normal Matrix(法向量变换矩阵) - 简书我们都知道原创 2022-03-19 21:30:40 · 657 阅读 · 0 评论 -
osg学习(七十二)SPHERE_MAP REFLECTION_MAP NORMAL_MAP
1、球面贴图已知视点、物体顶点、物体法线,计算反射向量,在球面上根据反射向量和视向量计算法向量,也即球面点,根据球面点计算纹理坐标进行采样贴图。2、反射贴图根据1计算反射向量,以反射向量计算纹理坐标进行采样贴图。3、法线贴图直接根据法线向量计算纹理坐标进行采样贴图。如果物体存在选择缩放需要特殊计算物体法线,简单通过gl_NormalMatrix*gl_Normal计算是不行的。参考:C++学习(三三六)球面贴图Sphere mapping 立方体贴图Cube ma原创 2022-03-19 21:16:58 · 587 阅读 · 1 评论 -
osg学习(七十一)如何给顶点着色器传递顶点数据
缩放不会影响传递到着色器中顶点坐标缩放设置顶点数据osg/Geometry.cppvoid Geometry::setVertexArray(Array* array){ _vertexArray = array;}通过glVertexPointer向顶点着色器派发,通过gl_Position gl_ModelViewProjectionMatrix gl_Vertex gl_Normal gl_MultiTexCoord1等访问相应的顶点属性信息。o.原创 2022-03-18 20:51:30 · 1027 阅读 · 0 评论 -
osg学习(七十)如何根据视口对象自动调整视点位置、距离
osgGA/CameraManipulator.cppvoid CameraManipulator::computeHomePosition(const osg::Camera *camera, bool useBoundingBox){ double dist = 3.5f * boundingSphere.radius(); if (camera) { // try to compute dist from frustum ...原创 2022-03-16 05:49:19 · 1577 阅读 · 0 评论 -
osg学习(六十九)平移、旋转、缩放实现过程
1、主程序osg::PositionAttitudeTransform* patTransform=new osg::PositionAttitudeTransform();patTransform->setPosition(l2wMatrix.getTrans());patTransform->setAttitude(l2wMatrix.getRotate());patTransform->setScale(osg::Vec3d(200.0,200.0,200.0));pa原创 2022-03-10 06:22:44 · 984 阅读 · 0 评论 -
osg学习(六十八)序列化插件加载过程
加载D:\OSG_OAGEARTH_x86\bin\osgPlugins-3.6.3\osgdb_serializers_osgd.dll原创 2022-03-08 06:25:42 · 428 阅读 · 0 评论 -
osg学习(六十七)InputIterator::checkStream() : _in->rdstate() 3, 2
缓存信息不一致的问题,清除缓存即可原创 2022-03-05 05:46:43 · 705 阅读 · 6 评论 -
osg学习(六十六)Unsupported wrapper class osg::Object
没有调用osgWrappers/serializers/osg/Object.cppREGISTER_OBJECT_WRAPPER( Object, new osg::DummyObject, osg::Object, "osg::Object" ){ ADD_STRING_SERIALIZER( Name, "" ); // _nam..原创 2022-03-03 06:12:52 · 504 阅读 · 0 评论 -
osg与opengl中向量、矩阵的区别
osg中的向量是行向量,矩阵相应也是与行向量对应v*Mopengl中的向量是列向量M*v原创 2019-03-02 18:04:00 · 686 阅读 · 0 评论 -
osg学习(六十五)图片到纹理
glBindTexture(GL_TEXTURE_2D, 0);GLuint disp_tex_id;glGenTextures(1, &disp_tex_id);glEnable(GL_TEXTURE_2D);glBindTexture(GL_TEXTURE_2D, disp_tex_id);glPixelStorei(GL_UNPACK_ALIGNMENT, 1);glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_R...原创 2022-02-20 08:33:51 · 448 阅读 · 0 评论 -
osg学习(六十四)osg的纹理模式 纹理属性
在osg中都通过渲染状态集StateSet来管理。1、纹理模式GL_TEXTURE_1DGL_TEXTURE_2DGL_TEXTURE_3DGL_TEXTURE_BUFFERGL_TEXTURE_CUBE_MAPGL_TEXTURE_RECTANGLE_NVGL_TEXTURE_2D_ARRAYGL_TEXTURE_2D_MULTISAMPLEGL_TEXTURE_GEN_QGL_TEXTURE_GEN_RGL_TEXTURE_GEN_SGL_TEXTURE_GEN_T原创 2022-02-12 07:22:53 · 1450 阅读 · 0 评论 -
osg学习(六十三)osg直接调用opengl例子
1、定义回调类class MyDrawCallback : public osg::Drawable::DrawCallback{public: void drawImplementation(osg::RenderInfo &, const osg::Drawable *) const{ GLenum errorNo; errorNo = glGetError(); }};2、设置回调类osg::ref_ptr<osg::原创 2022-02-09 05:56:00 · 680 阅读 · 0 评论 -
osg学习(六十二)osg::State中_useModelViewAndProjectionUniforms的作用
State::State(): Referenced(true){ #if !defined(OSG_GL_FIXED_FUNCTION_AVAILABLE) _useModelViewAndProjectionUniforms = true; _useVertexAttributeAliasing = true; #else _useModelViewAndProjectionUniforms = false; ...原创 2022-02-06 07:31:21 · 323 阅读 · 0 评论 -
osg学习(六十一)osg着色器例子
osg::ref_ptr<osg::Geometry> geom = new osg::Geometry; osg::ref_ptr<osg::Geode> geode = new osg::Geode; geom->setSupportsDisplayList(false); geode->addDrawable(geom.get()); osg::ref_ptr<osg::Vec3Array> vArr = new o...原创 2022-02-06 07:19:34 · 1141 阅读 · 1 评论 -
osg学习(六十)setTextureMode setTextureAttributeAndModes
ss.setTextureMode(unit,mode,value);ss.setTextureAttributeAndModes( unit, tex.get() );osg/StateSet.cppvoid StateSet::setTextureMode(unsigned int unit,StateAttribute::GLMode mode, StateAttribute::GLModeValue value){ if (getTextureGLModeSet().isT原创 2022-02-04 09:07:38 · 715 阅读 · 0 评论 -
osg学习(五十九)场景树节点典型例子
osg::ref_ptr<osg::Geometry> geometry = new osg::Geometry;osg::ref_ptr<osg::Vec3Array> vex = new osg::Vec3Array;vex->push_back(osg::Vec3(-3.0, 0.0, 0.0));vex->push_back(osg::Vec3(3.0, 0.0, 0.0));vex->push_back(osg::Vec3(0.0, 5.0,...原创 2022-02-03 19:00:37 · 305 阅读 · 0 评论 -
osg学习(五十八)cow.osg解析过程
1、文件结构Group { UniqueID Group_0 DataVariance STATIC cullingActive TRUE num_children 1 Geode { DataVariance DYNAMIC name "cow.osg" cullingActive TRUE num_drawables 1 Geometry { DataVariance DYNAMIC StateSet {原创 2022-02-03 07:53:51 · 964 阅读 · 0 评论 -
osg学习(五十六)osg::State的AttributeMap作用
osg/Stateclass OSG_EXPORT State : public Referenced{ typedef std::pair<const StateAttribute*,StateAttribute::OverrideValue> AttributePair; typedef std::vector<AttributePair> AttributeVe...原创 2022-01-23 08:39:03 · 808 阅读 · 0 评论 -
osg学习(五十五)osg_ModelViewMatrix osg_ModelViewProjectionMatrix osg_ProjectionMatrix osg_NormalMatrix
分别替换glsl中的gl_ModelViewMatrix gl_ModelViewProjectionMatrix gl_ProjectionMatrix gl_NormalMatrix,如果没有这些则插入。为什么要如此替换?这些gl_*变量在早期的版本中有(330中已经没有了),如果glsl有这些变量可能会出现高版本无法使用的问题,osg同一采用新的变量好处在于,避免不同版本的不兼容性问题。在低版本可以用,在高版本也可以用。不足的地方时,需要在程序中随时更新osg_*变量。osg/.原创 2021-08-29 07:35:00 · 1271 阅读 · 0 评论 -
osg学习(五十四)PNG lib warning : Interlace handling should be turned on when using png_read_image
PNG lib warning : Interlace handling should be turned on when using png_read_imageVERTEX glCompileShader "" FAILEDVERTEX Shader "" infolog:0(6) : error C5060: out can't be used with non-varying texCoord原创 2021-08-28 08:43:03 · 2126 阅读 · 0 评论 -
osg学习(五十三)绘制纹理贴图Texture示例
效果图:代码://osg纹理贴图 osg::ref_ptr<osg::Geometry> geom = new osg::Geometry; osg::ref_ptr<osg::Geode> geode = new osg::Geode; geode->addDrawable(geom.get()); osg::ref_ptr<osg::Vec3Array> vArr = new osg::Vec3Array;原创 2021-08-20 06:30:41 · 1929 阅读 · 0 评论 -
osg学习(五十二)加载的牛模型cow.osg没有纹理 黑色
纹理文件“Images/reflect.rgb”没有正确加载原创 2021-08-17 06:02:35 · 2766 阅读 · 0 评论 -
osg学习(五十一)Warning: detected OpenGL error ‘invalid operation‘ at after RenderBin::draw(..)
原因是什么?原创 2021-01-13 06:30:52 · 4387 阅读 · 2 评论 -
osg学习(五十)osg的三维模型是用显示列表来显示的
这样做的好处是速度快。也可以设置Geometry的_useVertexBufferObjects属性不使用显示列表。1、加载模型时处理顶点属性数据(位置 颜色 法线等)2、第一次裁减处理时生成显示列表3、以后的绘制直接使用显示列表...原创 2021-01-13 06:02:48 · 706 阅读 · 0 评论 -
osg学习(五十)qt的qml集成osg和osgearth
https://blog.youkuaiyun.com/hai7song/article/details/104776127https://zhuanlan.zhihu.com/p/37637802?utm_source=wechat_session原创 2020-11-09 16:28:53 · 3705 阅读 · 17 评论 -
osg学习(四十九)osg的STATIC、DYNAMIC 的作用
osg/objectenum DataVariance { DYNAMIC, STATIC, UNSPECIFIED };/** Set the data variance of this object. * Can be set to either STATIC for values that do not change over the lifetime of the o...原创 2020-10-18 07:19:24 · 453 阅读 · 0 评论 -
osg学习(四十八)Windows Error #2000
Windows Error #2000: Win32WindowingSystem::OpenGLContext() - Unable to restore current OpenGL rendering context. Reason: 无效的像素格式。执行完osg::ref_ptr<osg::Node> node = osgDB::readNodeFile("mb_tiles.earth",myReadOptions);后再执行 QOpenGLFramebuffe原创 2020-10-01 18:32:53 · 2222 阅读 · 5 评论 -
osg学习(四十七)osgEarth::Util::AutoClipPlaneCullCallback
根据视点距离地面的高度调整near、far的比率,避免距地面太近时看不到地面的东西。原理为:osgEarthUtil/AutoClipPlaneHandler.cpp GeoPoint loc; if ( map ) { loc.fromWorld( map->getSRS(), eye ); }原创 2020-09-17 06:41:55 · 1097 阅读 · 0 评论 -
osg学习(四十六)osg的UI控件
ControlCanvas* canvas = ControlCanvas::getOrCreate( view ); Container* mainContainer; if ( userContainer ) { mainContainer = userContainer; } else { mainContainer = new VBox(); mainContainer->setA...原创 2020-09-15 06:46:46 · 1058 阅读 · 0 评论 -
osg学习(四十五)有关倾斜摄影的osgb、gltf、3DTiles格式
1、osgb是倾斜摄影的格式,osg可以直接读取osgb文件OSGB file is an OpenSceneGraph Binary Scene Data. The OpenSceneGraph is an open source high performance 3D graphics toolkit, used by application developers in fields such as visual simulation, games, virtual reality, scienti原创 2020-09-10 21:26:45 · 7856 阅读 · 0 评论 -
osg学习(四十四)读取earth文件的几种方式
1、osg::Group* node = MapNodeHelper().load(arguments, &viewer);2、 osg::ref_ptr<osgDB::Options> myReadOptions = osgEarth::Registry::cloneOrCreateOptions(0); Config c; c.add("elevation_smoothing", false); TerrainOptions to(c);原创 2020-09-10 20:55:39 · 1763 阅读 · 1 评论 -
osg学习(四十三)如何给着色器上传 更新uniform变量
glsl的片段着色器中定义两个uniform变量:uniform sampler2D tile_xyz;uniform float tile_xyzH;在程序中:int unit;Rexter->getResources()->reserveTextureImageUnit( unit, "Tile XYZ" );osg::Uniform* tileXYZUniform=new osg::Uniform("tile_xyz", unit);surfaceStateSet-原创 2020-07-26 08:15:18 · 1901 阅读 · 0 评论 -
osg学习(四十三)osg所有按键的key值都是229(0xE5)
写了一个键盘响应,按下所有字母键盘,获取的按键key值都是229(0xE5)。class UseEventHandler :public osgGA::GUIEventHandler{public: UseEventHandler(){} virtual bool handle(const osgGA::GUIEventAdapter& ea, osgGA::GUIActionAdapter& aa) { osgViewer::Viewer*原创 2020-07-15 06:25:07 · 971 阅读 · 0 评论 -
osg学习(四十二)osg和opengl的相机坐标系
1、opengl的相机坐标系坐标原点在屏幕中心,向右为x正方向,向上为y正方向,垂直屏幕向里为z负方向2、osg的相机坐标系坐标原点在屏幕中心,向右为x正方向,向上为z正方向,垂直屏幕向里为y的正方向相当于opengl的相机坐标系绕x轴旋转90°。...原创 2020-06-05 21:32:33 · 1499 阅读 · 0 评论 -
osg学习(四十一)win32窗体像素格式PixelFormat
每一个设备上下文都要有一个像素格式作用是什么1、获取像素格式2、设置像素格式原创 2020-05-30 22:10:47 · 652 阅读 · 0 评论 -
osg学习(四十)osg::Viewer的realize创建窗体的几种方式
能够根据屏幕数,创建不同位置的窗口。void Viewer::realize(){ //在某一个屏幕上创建无边框窗口 //在某一个屏幕上创建正常窗口 //在所有屏幕上创建正常窗口,一个窗口,窗口位置可以跨屏幕 osgViewer::SingleWindow实现 //在某一个屏幕上创建全屏窗口 osgViewer::SingleScreen实现 //在所有屏幕上创建全屏窗口,,一个窗口,窗口位置可以跨屏幕 osgView原创 2020-05-30 18:45:21 · 984 阅读 · 0 评论 -
osg学习(三十九)DisplaySettings
DisplaySettings是osg的全局单实例变量,类似osg的Registry。主要记录窗口的一些显示设置,比如窗口尺寸、多重纹理采样数等,osg在创建窗口时会从该变量中读取信息,这个变量中的信息可以通过命令行输入也可以通过环境变量输入,但是不支持通过代码修改。1、创建时机osg/DisplaySettomgs.cppOSG_INIT_SINGLETON_PROXY(ProxyInitDisplaySettings, DisplaySettings::instance())osg/.原创 2020-05-30 18:28:00 · 2089 阅读 · 0 评论 -
osg学习(三十八)Android窗口创建过程
osg::ref_ptr<osgViewer::Viewer> _viewer;_viewer = new osgViewer::Viewer();_viewer->setUpViewerAsEmbeddedInWindow(x, y, width, height);_viewer->realize();原创 2020-05-27 06:50:10 · 451 阅读 · 0 评论 -
osg学习(三十七)如何实现跨平台创建窗口
1、在camkelist中设置选项2、配置camke工程时传入跨平台系统原创 2020-05-25 21:19:08 · 637 阅读 · 0 评论