mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-08 04:08:32 +09:00
17 lines
393 B
C++
17 lines
393 B
C++
#pragma once
|
|
#include "TextureObject.h"
|
|
|
|
namespace MobileGL {
|
|
namespace MG_State {
|
|
namespace GLState {
|
|
class TextureObject1D : public TextureObjectBase {
|
|
public:
|
|
explicit TextureObject1D(Uint externalIndex);
|
|
|
|
protected:
|
|
void SetMipmapImpl(const MipmapLevelInput& level) override;
|
|
};
|
|
}
|
|
}
|
|
}
|