MCPcopy Create free account
hub / github.com/LukasBanana/LLGL / AndroidModule

Class AndroidModule

sources/Platform/Android/AndroidModule.h:19–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18
19class AndroidModule : public Module
20{
21
22 public:
23
24 AndroidModule(const char* moduleFilename, Report* report = nullptr);
25 ~AndroidModule();
26
27 void* LoadProcedure(const char* procedureName) override;
28
29 public:
30
31 inline bool IsValid() const
32 {
33 return (handle_ != nullptr);
34 }
35
36 private:
37
38 void* handle_ = nullptr;
39
40};
41
42
43} // /namespace LLGL

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected