70 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /****************************************************************************
 | |
|  Copyright (c) 2021-2023 Xiamen Yaji Software Co., Ltd.
 | |
| 
 | |
|  http://www.cocos.com
 | |
| 
 | |
|  Permission is hereby granted, free of charge, to any person obtaining a copy
 | |
|  of this software and associated documentation files (the "Software"), to deal
 | |
|  in the Software without restriction, including without limitation the rights to
 | |
|  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
 | |
|  of the Software, and to permit persons to whom the Software is furnished to do so,
 | |
|  subject to the following conditions:
 | |
| 
 | |
|  The above copyright notice and this permission notice shall be included in
 | |
|  all copies or substantial portions of the Software.
 | |
| 
 | |
|  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | |
|  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | |
|  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | |
|  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | |
|  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | |
|  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | |
|  THE SOFTWARE.
 | |
| ****************************************************************************/
 | |
| 
 | |
| #include "cocos/bindings/auto/jsb_gfx_auto.h"
 | |
| #include "cocos/bindings/auto/jsb_pipeline_auto.h"
 | |
| #include "cocos/bindings/jswrapper/SeApi.h"
 | |
| #include "cocos/bindings/manual/jsb_conversions.h"
 | |
| #include "cocos/bindings/manual/jsb_global.h"
 | |
| #include "gfx-base/GFXPipelineState.h"
 | |
| #include "renderer/pipeline/Define.h"
 | |
| #include "renderer/pipeline/PipelineStateManager.h"
 | |
| #include "renderer/pipeline/RenderPipeline.h"
 | |
| 
 | |
| static bool JSB_getOrCreatePipelineState(se::State &s) { // NOLINT(readability-identifier-naming)
 | |
|     const auto &args = s.args();
 | |
|     size_t argc = args.size();
 | |
|     if (argc == 4) {
 | |
|         auto *pass = static_cast<cc::scene::Pass *>(args[0].toObject()->getPrivateData());
 | |
|         auto *shader = static_cast<cc::gfx::Shader *>(args[1].toObject()->getPrivateData());
 | |
|         auto *renderPass = static_cast<cc::gfx::RenderPass *>(args[2].toObject()->getPrivateData());
 | |
|         auto *inputAssembler = static_cast<cc::gfx::InputAssembler *>(args[3].toObject()->getPrivateData());
 | |
|         auto *pipelineState = cc::pipeline::PipelineStateManager::getOrCreatePipelineState(pass, shader, inputAssembler, renderPass);
 | |
|         native_ptr_to_seval<cc::gfx::PipelineState>(pipelineState, &s.rval());
 | |
|         return true;
 | |
|     }
 | |
|     SE_REPORT_ERROR("wrong number of arguments: %d, was expecting %d", (int)argc, 4);
 | |
|     return false;
 | |
| }
 | |
| SE_BIND_FUNC(JSB_getOrCreatePipelineState);
 | |
| 
 | |
| bool register_all_pipeline_manual(se::Object *obj) { // NOLINT(readability-identifier-naming)
 | |
|     // Get the ns
 | |
|     se::Value nrVal;
 | |
|     if (!obj->getProperty("nr", &nrVal)) {
 | |
|         se::HandleObject jsobj(se::Object::createPlainObject());
 | |
|         nrVal.setObject(jsobj);
 | |
|         obj->setProperty("nr", nrVal);
 | |
|     }
 | |
|     se::Object *nr = nrVal.toObject();
 | |
| 
 | |
|     se::Value psmVal;
 | |
|     se::HandleObject jsobj(se::Object::createPlainObject());
 | |
|     psmVal.setObject(jsobj);
 | |
|     nr->setProperty("PipelineStateManager", psmVal);
 | |
|     psmVal.toObject()->defineFunction("getOrCreatePipelineState", _SE(JSB_getOrCreatePipelineState));
 | |
| 
 | |
|     return true;
 | |
| }
 | 
