+diff -pruN --exclude build ./demo_clean/src/LAppSpriteShader.cpp ./demo_dev/src/LAppSpriteShader.cpp
+--- ./demo_clean/src/LAppSpriteShader.cpp 2025-03-23 03:36:37.781727200 +0000
++++ ./demo_dev/src/LAppSpriteShader.cpp 1970-01-01 00:00:00.000000000 +0000
+@@ -1,108 +0,0 @@
+-/**
+- * Copyright(c) Live2D Inc. All rights reserved.
+- *
+- * Use of this source code is governed by the Live2D Open Software license
+- * that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
+- */
+-
+-#include "LAppSpriteShader.hpp"
+-#include <Utils/CubismDebug.hpp>
+-#include "LAppDefine.hpp"
+-#include "LAppPal.hpp"
+-
+-using namespace LAppDefine;
+-
+-LAppSpriteShader::LAppSpriteShader()
+-{
+- _programId = CreateShader();
+-}
+-
+-LAppSpriteShader::~LAppSpriteShader()
+-{
+- glDeleteShader(_programId);
+-}
+-
+-GLuint LAppSpriteShader::GetShaderId() const
+-{
+- return _programId;
+-}
+-
+-GLuint LAppSpriteShader::CreateShader()
+-{
+- // シェーダーのパスの作成
+- Csm::csmString vertShaderFile(ShaderPath);
+- vertShaderFile += VertShaderName;
+- Csm::csmString fragShaderFile(ShaderPath);
+- fragShaderFile += FragShaderName;
+-
+- // シェーダーのコンパイル
+- GLuint vertexShaderId = CompileShader(vertShaderFile, GL_VERTEX_SHADER);
+- GLuint fragmentShaderId = CompileShader(fragShaderFile, GL_FRAGMENT_SHADER);
+-
+- if (!vertexShaderId || !fragmentShaderId)
+- {
+- return 0;
+- }
+-
+- //プログラムオブジェクトの作成
+- GLuint programId = glCreateProgram();
+- glAttachShader(programId, vertexShaderId);
+- glAttachShader(programId, fragmentShaderId);
+-
+- // リンク
+- glLinkProgram(programId);
+-
+- glUseProgram(programId);
+-
+- // 不要になったシェーダーオブジェクトの削除
+- glDeleteShader(vertexShaderId);
+- glDeleteShader(fragmentShaderId);
+-
+- return programId;
+-}
+-
+-bool LAppSpriteShader::CheckShader(GLuint shaderId)
+-{
+- GLint status;
+- GLint logLength;
+- glGetShaderiv(shaderId, GL_INFO_LOG_LENGTH, &logLength);
+- if (logLength > 0)
+- {
+- GLchar* log = reinterpret_cast<GLchar*>(CSM_MALLOC(logLength));
+- glGetShaderInfoLog(shaderId, logLength, &logLength, log);
+- CubismLogError("Shader compile log: %s", log);
+- CSM_FREE(log);
+- }
+-
+- glGetShaderiv(shaderId, GL_COMPILE_STATUS, &status);
+- if (status == GL_FALSE)
+- {
+- glDeleteShader(shaderId);
+- return false;
+- }
+-
+- return true;
+-}
+-
+-GLuint LAppSpriteShader::CompileShader(Csm::csmString filename, GLenum shaderType)
+-{
+- // ファイル読み込み
+- Csm::csmSizeInt bufferSize = 0;
+- const char* shaderString = reinterpret_cast<const char*>(LAppPal::LoadFileAsBytes(filename.GetRawString(), &bufferSize));
+- const GLint glSize = (GLint)bufferSize;
+-
+- // コンパイル
+- GLuint shaderId = glCreateShader(shaderType);
+- glShaderSource(shaderId, 1, &shaderString, &glSize);
+- glCompileShader(shaderId);
+-
+- // 読み込んだシェーダー文字列の開放
+- LAppPal::ReleaseBytes(reinterpret_cast<Csm::csmByte*>(const_cast<char*>(shaderString)));
+-
+- if (!CheckShader(shaderId))
+- {
+- return 0;
+- }
+-
+- return shaderId;
+-}
+diff -pruN --exclude build ./demo_clean/src/LAppSpriteShader.hpp ./demo_dev/src/LAppSpriteShader.hpp
+--- ./demo_clean/src/LAppSpriteShader.hpp 2025-03-23 03:36:38.009877400 +0000
++++ ./demo_dev/src/LAppSpriteShader.hpp 1970-01-01 00:00:00.000000000 +0000
+@@ -1,57 +0,0 @@
+-/**
+- * Copyright(c) Live2D Inc. All rights reserved.
+- *
+- * Use of this source code is governed by the Live2D Open Software license
+- * that can be found at https://www.live2d.com/eula/live2d-open-software-license-agreement_en.html.
+- */
+-
+-#pragma once
+-
+-#include <GL/glew.h>
+-#include <GLFW/glfw3.h>
+-#include <Utils/CubismString.hpp>
+-#include "CubismFramework.hpp"
+-
+-/**
+-* @brief スプライト用のシェーダー設定を保持するクラス
+-*/
+-class LAppSpriteShader
+-{
+-public:
+- /**
+- * @brief コンストラクタ
+- */
+- LAppSpriteShader();
+-
+- /**
+- * @brief デストラクタ
+- */
+- ~LAppSpriteShader();
+-
+- /**
+- * @brief シェーダーIDを取得する
+- */
+- GLuint GetShaderId() const;
+-
+-private:
+- /**
+- * @brief シェーダーオブジェクトを作成する。
+- */
+- GLuint CreateShader();
+-
+- /**
+- * @brief CreateShader内部関数 エラーチェック
+- */
+- bool CheckShader(GLuint shaderId);
+-
+- /**
+- * @brief シェーダーをコンパイルする。
+- * コンパイルに失敗した場合には 0 が戻る。
+- *
+- * @param[in] filename シェーダーファイル名
+- * @param[in] shaderType 作成するシェーダーの種類
+- */
+- GLuint CompileShader(Csm::csmString filename, GLenum shaderType);
+-
+- GLuint _programId; ///< シェーダID
+-};