partial fix on blt::logging, did not update format tags
parent
c8c54ba39c
commit
103368495a
|
@ -1,7 +1,7 @@
|
|||
cmake_minimum_required(VERSION 3.25)
|
||||
include(FetchContent)
|
||||
|
||||
set(BLT_GRAPHICS_VERSION 1.1.4)
|
||||
set(BLT_GRAPHICS_VERSION 1.1.5)
|
||||
set(BLT_GRAPHICS_TEST_VERSION 0.0.1)
|
||||
|
||||
project(BLT_WITH_GRAPHICS VERSION ${BLT_GRAPHICS_VERSION})
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#ifndef BLT_GL_INCLUDES_H
|
||||
#define BLT_GL_INCLUDES_H
|
||||
|
||||
#include <blt/std/logging.h>
|
||||
#include <blt/logging/logging.h>
|
||||
|
||||
// emscripten provides its own gl bindings.
|
||||
#ifndef __EMSCRIPTEN__
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define BLT_TEXTURE_H
|
||||
|
||||
#include <blt/gfx/gl_includes.h>
|
||||
#include <blt/std/logging.h>
|
||||
#include <blt/logging/logging.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <utility>
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit d32b5d398a8bded92409d7dc889ca752bb001d0c
|
||||
Subproject commit 04a5c01704bbf126ef623d57af61359cdf3d659c
|
|
@ -16,7 +16,7 @@
|
|||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <blt/gfx/font/font.h>
|
||||
#include <blt/std/logging.h>
|
||||
#include <blt/logging/logging.h>
|
||||
#include <cstring>
|
||||
#include <utility>
|
||||
#include "blt/std/assert.h"
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
*/
|
||||
#include <blt/gfx/model.h>
|
||||
#include <blt/std/memory_util.h>
|
||||
#include "blt/std/logging.h"
|
||||
#include "blt/logging/logging.h"
|
||||
|
||||
namespace blt::gfx
|
||||
{
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
#include <blt/gfx/raycast.h>
|
||||
#include <blt/gfx/window.h>
|
||||
#include <blt/std/logging.h>
|
||||
#include <blt/logging/logging.h>
|
||||
#include <blt/math/log_util.h>
|
||||
|
||||
namespace blt::gfx
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
*/
|
||||
#include <blt/gfx/renderer/camera.h>
|
||||
#include <blt/gfx/window.h>
|
||||
#include <blt/std/logging.h>
|
||||
#include <blt/logging/logging.h>
|
||||
#include <blt/math/log_util.h>
|
||||
|
||||
void blt::gfx::first_person_camera::update()
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <blt/gfx/renderer/resource_manager.h>
|
||||
#include <blt/std/logging.h>
|
||||
#include <blt/logging/logging.h>
|
||||
#include <blt/std/thread.h>
|
||||
#include <filesystem>
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <blt/gfx/state.h>
|
||||
#include <blt/std/logging.h>
|
||||
#include <blt/logging/logging.h>
|
||||
#include "blt/std/assert.h"
|
||||
|
||||
void blt::gfx::matrix_state_manager::update()
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
#include <blt/gfx/window.h>
|
||||
#include <blt/std/assert.h>
|
||||
#include <blt/std/logging.h>
|
||||
#include <blt/logging/logging.h>
|
||||
#include <blt/std/time.h>
|
||||
#include <blt/gfx/input.h>
|
||||
#include <blt/gfx/font/font.h>
|
||||
|
|
Loading…
Reference in New Issue