Skip to content

Commit dd8c942

Browse files
committed
fix: datatime ext misspellings
1 parent dffaf58 commit dd8c942

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

docs/changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ away, please see git history for details.
77

88
- v0.6.3 (2025-xx-xx) (draw) add image quad (v1.4.0)
99
(draw) add draw callbacks
10+
(datatime) fix string name for "March"
1011
(starter) added reverse z depth buffer support (v1.3.0)
1112
(graphics) fix draw_indexed multiple index buffers (v1.5.1)
1213
(graphics) fix new validation layer errors (v1.5.2)

docs/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ the API is complete. It just means we won't break what currently exists.
7878
* UI Tools v1.0.0 (pl_tools_ext.h)
7979
* UI v1.0.0 (pl_ui_ext.h)
8080
* Pak Files v1.0.0 (pl_pak_ext.h)
81-
* Date & Time v1.0.0 (pl_datetime_ext.h)
81+
* Date & Time v1.0.1 (pl_datetime_ext.h)
8282
* Compression v1.0.0 (pl_compress_ext.h)
8383
* Virtual File System v1.0.0 (pl_vfs_ext.h)
8484
* ECS v1.0.0 (pl_ecs_ext.h)

editor/app.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,9 +474,10 @@ pl_app_load(plApiRegistryI* ptApiRegistry, plAppData* ptAppData)
474474
gptRenderer->load_skybox_from_panorama(ptAppData->ptScene, "/environments/helipad.hdr", 1024);
475475

476476
plModelLoaderData tLoaderData0 = {0};
477-
gptModelLoader->load_gltf(ptAppData->ptComponentLibrary, "/models/gltf/humanoid/model.gltf", NULL, &tLoaderData0);
477+
// gptModelLoader->load_gltf(ptAppData->ptComponentLibrary, "/models/gltf/humanoid/model.gltf", NULL, &tLoaderData0);
478478
// gptModelLoader->load_gltf(ptAppData->ptComponentLibrary, "/models/gltf/humanoid/floor.gltf", NULL, &tLoaderData0);
479-
gptModelLoader->load_gltf(ptAppData->ptComponentLibrary, "/gltf/Sponza/glTF/Sponza.gltf", NULL, &tLoaderData0);
479+
// gptModelLoader->load_gltf(ptAppData->ptComponentLibrary, "/gltf/Sponza/glTF/Sponza.gltf", NULL, &tLoaderData0);
480+
gptModelLoader->load_gltf(ptAppData->ptComponentLibrary, "/models/gltf/sort.gltf", NULL, &tLoaderData0);
480481
// plMat4 tRotation = pl_mat4_rotate_xyz(-PL_PI_2, 0.0f, 1.0f, 0.0f);
481482
// gptModelLoader->load_gltf(ptAppData->ptComponentLibrary, "/gltf/CarConcept/glTF/CarConcept.gltf", &tRotation, &tLoaderData0);
482483
// gptModelLoader->load_gltf(ptAppData->ptComponentLibrary, "/gltf/EnvironmentTest/glTF/EnvironmentTest.gltf", NULL, &tLoaderData0);

extensions/pl_datetime_ext.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ static const char* gacMonthNames[] = {
3030
"ERROR",
3131
"JANUARY",
3232
"FEBRUARY",
33-
"MARCK",
33+
"MARCH",
3434
"APRIL",
3535
"MAY",
3636
"JUNE",

extensions/pl_datetime_ext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Index of this file:
2424
// [SECTION] APIs
2525
//-----------------------------------------------------------------------------
2626

27-
#define plDateTimeI_version {1, 0, 0}
27+
#define plDateTimeI_version {1, 0, 1}
2828

2929
//-----------------------------------------------------------------------------
3030
// [SECTION] forward declarations

extensions/pl_graphics_cpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ pl_set_texture_usage(plBlitEncoder* ptEncoder, plTextureHandle tHandle, plTextur
438438
}
439439

440440
void
441-
pl_set_texture_usage(plBlitEncoder* ptEncoder, plTextureHandle tHandle, plTextureUsage tNewUsage, plTextureUsage tOldUsage)
441+
pl_set_texture_usage_ex(plBlitEncoder* ptEncoder, plTextureHandle tHandle, plTextureUsage tNewUsage, plTextureUsage tOldUsage, plPipelineStageFlags tNewStages, plPipelineStageFlags tOldStages)
442442
{
443443
}
444444

extensions/pl_graphics_metal.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2295,7 +2295,7 @@
22952295
}
22962296

22972297
void
2298-
pl_set_texture_usage(plBlitEncoder* ptEncoder, plTextureHandle tHandle, plTextureUsage tNewUsage, plTextureUsage tOldUsage)
2298+
pl_set_texture_usage_ex(plBlitEncoder* ptEncoder, plTextureHandle tHandle, plTextureUsage tNewUsage, plTextureUsage tOldUsage, plPipelineStageFlags tNewStages, plPipelineStageFlags tOldStages)
22992299
{
23002300
}
23012301

0 commit comments

Comments
 (0)