PixelShader更名为FragementShader

This commit is contained in:
2025-12-04 22:06:55 +08:00
parent 3c0e177905
commit 0cd230b577
12 changed files with 22 additions and 22 deletions
@@ -23,7 +23,7 @@ public:
virtual void end() = 0;
};
class PixelShaderInterface
class FragementShaderInterface
{
public:
virtual const char* getName(void) const = 0;
@@ -39,7 +39,7 @@ class ShaderFileInterface
{
public:
virtual VertexShaderInterface* getVertexShader(const char* szName) = 0;
virtual PixelShaderInterface* getPixelShader(const char* szName) = 0;
virtual FragementShaderInterface* getFragementShader(const char* szName) = 0;
};
typedef ShaderFileInterface* (*ShaderFileInterfaceFunc)();