diff --git a/changes.txt b/changes.txt index 7b6798d7..a1aca47f 100644 --- a/changes.txt +++ b/changes.txt @@ -1,6 +1,7 @@ -------------------------- Changes in 1.9 (not yet released) +- Add IShaderConstantSetCallBack::OnCreate to allow earlier access to IMaterialRendererServices - CIrrDeviceWin32::yield() now uses Sleep(0) instead of Sleep(1). We had Sleep(1) to allow yielding to all processes back in Windows XP time. But a) This caused Windows apps to sleep for 15ms usually and b) behavior for Sleep(0) was changed after Window XP to do what we want it to do. diff --git a/examples/10.Shaders/main.cpp b/examples/10.Shaders/main.cpp index 0286cc9d..d426fbcf 100644 --- a/examples/10.Shaders/main.cpp +++ b/examples/10.Shaders/main.cpp @@ -48,19 +48,15 @@ class MyShaderCallBack : public video::IShaderConstantSetCallBack { public: MyShaderCallBack() : WorldViewProjID(-1), TransWorldID(-1), InvWorldID(-1), PositionID(-1), - ColorID(-1), TextureID(-1), FirstUpdate(true) + ColorID(-1), TextureID(-1) { } - virtual void OnSetConstants(video::IMaterialRendererServices* services, - s32 userData) + virtual void OnCreate(video::IMaterialRendererServices* services, s32 userData) { - video::IVideoDriver* driver = services->getVideoDriver(); - - // get shader constants id. - - if (UseHighLevelShaders && FirstUpdate) + if (UseHighLevelShaders) { + // get shader constants id. WorldViewProjID = services->getVertexShaderConstantID("mWorldViewProj"); TransWorldID = services->getVertexShaderConstantID("mTransWorld"); InvWorldID = services->getVertexShaderConstantID("mInvWorld"); @@ -68,12 +64,16 @@ public: ColorID = services->getVertexShaderConstantID("mLightColor"); // Textures ID are important only for OpenGL interface. - + video::IVideoDriver* driver = services->getVideoDriver(); if(driver->getDriverType() == video::EDT_OPENGL) TextureID = services->getVertexShaderConstantID("myTexture"); - - FirstUpdate = false; } + } + + virtual void OnSetConstants(video::IMaterialRendererServices* services, + s32 userData) + { + video::IVideoDriver* driver = services->getVideoDriver(); // set inverted world matrix // if we are using highlevel shaders (the user can select this when @@ -143,8 +143,6 @@ private: s32 PositionID; s32 ColorID; s32 TextureID; - - bool FirstUpdate; }; /* diff --git a/include/IShaderConstantSetCallBack.h b/include/IShaderConstantSetCallBack.h index eef3be3b..b84cd7df 100644 --- a/include/IShaderConstantSetCallBack.h +++ b/include/IShaderConstantSetCallBack.h @@ -22,6 +22,14 @@ class IShaderConstantSetCallBack : public virtual IReferenceCounted { public: + //! Called by the engine after a shader material has been created successfully + /** If you are using one callback instance per shader (much recommended) + this is a good place to get shader constant id's for high level shaders. + \param services: Pointer to an interface providing methods to set/get the constants for the shader. + \param userData: Userdata int which can be specified when creating the shader. */ + virtual void OnCreate(IMaterialRendererServices* services, s32 userData) { } + + //! Called to let the callBack know the used material (optional method) /** \code diff --git a/source/Irrlicht/CD3D9Driver.cpp b/source/Irrlicht/CD3D9Driver.cpp index 5db56bad..7e6e8b48 100644 --- a/source/Irrlicht/CD3D9Driver.cpp +++ b/source/Irrlicht/CD3D9Driver.cpp @@ -3176,6 +3176,10 @@ s32 CD3D9Driver::addShaderMaterial(const c8* vertexShaderProgram, callback, getMaterialRenderer(baseMaterial), userData); r->drop(); + + if (callback && nr >= 0) + callback->OnCreate(this, userData); + return nr; } @@ -3213,6 +3217,9 @@ s32 CD3D9Driver::addHighLevelShaderMaterial( r->drop(); + if (callback && nr >= 0) + callback->OnCreate(r, userData); + return nr; } diff --git a/source/Irrlicht/COpenGLDriver.cpp b/source/Irrlicht/COpenGLDriver.cpp index 0ae5a86f..46c43ec5 100644 --- a/source/Irrlicht/COpenGLDriver.cpp +++ b/source/Irrlicht/COpenGLDriver.cpp @@ -3725,6 +3725,10 @@ s32 COpenGLDriver::addShaderMaterial(const c8* vertexShaderProgram, callback, baseMaterial, userData); r->drop(); + + if (callback && nr >= 0) + callback->OnCreate(this, userData); + return nr; } @@ -3759,6 +3763,9 @@ s32 COpenGLDriver::addHighLevelShaderMaterial( r->drop(); + if (callback && nr >= 0) + callback->OnCreate(r, userData); + return nr; } diff --git a/source/Irrlicht/CSoftwareDriver2.cpp b/source/Irrlicht/CSoftwareDriver2.cpp index e2331b06..b6b640fa 100644 --- a/source/Irrlicht/CSoftwareDriver2.cpp +++ b/source/Irrlicht/CSoftwareDriver2.cpp @@ -4654,6 +4654,9 @@ s32 CBurningVideoDriver::addShaderMaterial(const c8* vertexShaderProgram, shader->drop(); + if (callback && materialID >= 0) + callback->OnCreate(shader, userData); + return materialID; } @@ -4691,6 +4694,9 @@ s32 CBurningVideoDriver::addHighLevelShaderMaterial( shader->drop(); + if (callback && materialID >= 0) + callback->OnCreate(shader, userData); + return materialID; } diff --git a/tests/tests-last-passed-at.txt b/tests/tests-last-passed-at.txt index 6dfcd8af..71642710 100644 --- a/tests/tests-last-passed-at.txt +++ b/tests/tests-last-passed-at.txt @@ -1,4 +1,4 @@ Tests finished. 72 tests of 72 passed. Compiled as DEBUG -Test suite pass at GMT Fri Apr 21 13:49:43 2023 +Test suite pass at GMT Fri Apr 21 14:37:22 2023