Skip to content

Commit

Permalink
Merge pull request #231 from kimkulling/kimkulling/fix_editor_name
Browse files Browse the repository at this point in the history
Kimkulling/fix editor name
  • Loading branch information
kimkulling authored Sep 6, 2024
2 parents 8f8d251 + ed85117 commit 9181039
Show file tree
Hide file tree
Showing 29 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ INCLUDE_DIRECTORIES( BEFORE
contrib/assimp/include
contrib/stb
contrib/glew/include
contrib/unzip
contrib/unzip
contrib/cppcore/include
contrib/assimp/contrib/zlib
contrib/cppcore/contrib/gtest-1.7.0/include
Expand Down Expand Up @@ -96,8 +96,8 @@ endif()

if (WIN32)
if (OSRE_BUILD_ED)
ADD_SUBDIRECTORY( src/Editor_imgui)
set_target_properties(osre_ed_imgui PROPERTIES FOLDER Editor)
ADD_SUBDIRECTORY( src/Editor)
set_target_properties(osre_ed PROPERTIES FOLDER Editor)
endif()
endif()

Expand Down
2 changes: 1 addition & 1 deletion contrib/cppcore
Submodule cppcore updated 41 files
+4 −3 CMakeLists.txt
+1 −1 code/Memory/MemUtils.cpp
+1 −1 code/Random/RandomGenerator.cpp
+1 −1 code/cppcore.cpp
+33 −0 contrib/googletest-1.10.x/googletest/generated/GTestConfig.cmake
+48 −0 contrib/googletest-1.10.x/googletest/generated/GTestConfigVersion.cmake
+10 −0 contrib/googletest-1.10.x/googletest/generated/gmock.pc
+10 −0 contrib/googletest-1.10.x/googletest/generated/gmock_main.pc
+9 −0 contrib/googletest-1.10.x/googletest/generated/gtest.pc
+10 −0 contrib/googletest-1.10.x/googletest/generated/gtest_main.pc
+0 −1 include/cppcore/CPPCoreCommon.h
+1 −1 include/cppcore/Common/Hash.h
+1 −1 include/cppcore/Common/TBitField.h
+2 −17 include/cppcore/Common/TOptional.h
+1 −1 include/cppcore/Common/TSharedPtr.h
+1 −1 include/cppcore/Common/TStringBase.h
+16 −17 include/cppcore/Common/Variant.h
+1 −1 include/cppcore/Container/TArray.h
+1 −1 include/cppcore/Container/THashMap.h
+1 −1 include/cppcore/Container/TList.h
+1 −1 include/cppcore/Container/TQueue.h
+1 −1 include/cppcore/Container/TStaticArray.h
+5 −21 include/cppcore/Memory/MemUtils.h
+1 −1 include/cppcore/Memory/TDefaultAllocator.h
+1 −1 include/cppcore/Memory/TPoolAllocator.h
+2 −2 include/cppcore/Memory/TStackAllocator.h
+1 −1 include/cppcore/Random/RandomGenerator.h
+1 −1 test/CPPCoreCommonTest.cpp
+1 −1 test/Random/RandomGeneratorTest.cpp
+1 −1 test/common/HashTest.cpp
+1 −1 test/common/TBitFieldTest.cpp
+10 −16 test/common/TOptionalTest.cpp
+1 −1 test/common/TSharedPtrTest.cpp
+1 −1 test/common/VariantTest.cpp
+1 −1 test/container/TArrayTest.cpp
+1 −1 test/container/THashMapTest.cpp
+37 −37 test/container/TListTest.cpp
+1 −1 test/container/TQueueTest.cpp
+1 −1 test/container/TStaticArrayTest.cpp
+1 −1 test/memory/TPoolAllocatorTest.cpp
+1 −1 test/memory/TStackAllocatorTest.cpp
9 changes: 4 additions & 5 deletions src/Editor_imgui/CMakeLists.txt → src/Editor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ link_directories(
${Python3_LIBRARIES}
)

SET( inspector_module_src
SET( inspector_module_src
src/Modules/InspectorModule/InspectorModule.cpp
src/Modules/InspectorModule/InspectorModule.h
)
Expand All @@ -31,19 +31,19 @@ SET( editor_module_src
src/Modules/EditorModule/EditorModule.cpp
)

SET( modules_src
SET( modules_src
src/Modules/ModuleRegistry.h
src/Modules/ModuleRegistry.cpp
)

SET( scripting_src
SET( scripting_src
src/Scripting/PythonInterface.cpp
src/Scripting/PythonInterface.h
)

set(renderview_src
src/RenderView/MainRenderView.cpp
src/RenderView/MainRenderView.h
src/RenderView/MainRenderView.h
)

set(actions_src
Expand Down Expand Up @@ -76,7 +76,6 @@ SOURCE_GROUP(Modules\\LogModule FILES ${log_module_src} )
SOURCE_GROUP(Modules\\EditorModule FILES ${editor_module_src} )
SOURCE_GROUP(Modules\\ FILES ${modules_src} )
SOURCE_GROUP(Scripting\\ FILES ${scripting_src} )

SOURCE_GROUP(Main\\ FILES ${main_src})

ADD_EXECUTABLE( osre_ed
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Engine/RenderBackend/2D/CanvasRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void CanvasRenderer::render(RenderBackendService *rbSrv) {
}
}

//Debugging::MeshDiagnostic::dumpVertices(dc.Vertices, dc.NumVertices);
Debugging::MeshDiagnostic::dumpVertices(dc.Vertices, dc.NumVertices);
mMesh->attachVertices(dc.Vertices, dc.NumVertices * sizeof(RenderVert));
mMesh->attachIndices(dc.Indices, dc.NumIndices * sizeof(ui16));
prim = dc.PrimType;
Expand Down

0 comments on commit 9181039

Please sign in to comment.