partial fix on blt::logging, did not update format tags

main
Brett 2025-03-12 20:53:07 -04:00
parent c8c54ba39c
commit 103368495a
11 changed files with 11 additions and 11 deletions

View File

@ -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})

View File

@ -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__

View File

@ -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

View File

@ -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"

View File

@ -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
{

View File

@ -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

View File

@ -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()

View File

@ -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>

View File

@ -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()

View File

@ -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>