mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 00:52:27 +02:00
Creating new avatar rendering library, prepping for crowd rendering project
This commit is contained in:
parent
333f950512
commit
0ca0874c52
4 changed files with 34 additions and 1 deletions
|
@ -192,7 +192,7 @@ link_hifi_libraries(
|
|||
shared octree ktx gpu gl gpu-gl procedural model render
|
||||
recording fbx networking model-networking entities avatars
|
||||
audio audio-client animation script-engine physics
|
||||
render-utils entities-renderer ui auto-updater
|
||||
render-utils entities-renderer avatars-renderer ui auto-updater
|
||||
controllers plugins
|
||||
ui-plugins display-plugins input-plugins
|
||||
${NON_ANDROID_LIBRARIES}
|
||||
|
|
6
libraries/avatars-renderer/CMakeLists.txt
Normal file
6
libraries/avatars-renderer/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
set(TARGET_NAME avatars-renderer)
|
||||
AUTOSCRIBE_SHADER_LIB(gpu model render render-utils)
|
||||
setup_hifi_library(Widgets Network Script)
|
||||
link_hifi_libraries(shared gpu model animation physics model-networking script-engine render render-utils)
|
||||
|
||||
target_bullet()
|
11
libraries/avatars-renderer/src/AvatarsRendererLogging.cpp
Normal file
11
libraries/avatars-renderer/src/AvatarsRendererLogging.cpp
Normal file
|
@ -0,0 +1,11 @@
|
|||
//
|
||||
// Created by Bradley Austin Davis on 2016/12/06
|
||||
// Copyright 2013-2016 High Fidelity, Inc.
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
#include "AvatarsRendererLogging.h"
|
||||
|
||||
Q_LOGGING_CATEGORY(avatars_renderer, "hifi.avatars.rendering")
|
16
libraries/avatars-renderer/src/AvatarsRendererLogging.h
Normal file
16
libraries/avatars-renderer/src/AvatarsRendererLogging.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
//
|
||||
// Created by Bradley Austin Davis on 2016/12/06
|
||||
// Copyright 2013-2016 High Fidelity, Inc.
|
||||
//
|
||||
// Distributed under the Apache License, Version 2.0.
|
||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
#ifndef hifi_AvatarsRendererLogging_h
|
||||
#define hifi_AvatarsRendererLogging_h
|
||||
|
||||
#include <QtCore/QLoggingCategory>
|
||||
|
||||
Q_DECLARE_LOGGING_CATEGORY(avatars_renderer)
|
||||
|
||||
#endif // hifi_AvatarsRendererLogging_h
|
Loading…
Reference in a new issue