Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Possible have multi GL plugin at one AE instance?

Community Beginner ,
Mar 02, 2025 Mar 02, 2025

Hi guys!

I found I can only have one OpenGL plugin initialized in an AE instance, if I have two different plugins which is based on AE GL SDK, I can only add the very first on a layer, if I attend to add another one, AE will showup plugin initialization error.

TOPICS
FAQ , SDK
112
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Engaged , Mar 03, 2025 Mar 03, 2025

If you have multiple different plugins based on the old GLator sample you'll need to change the string on windows (from GL_base.cpp):

// very tricky, windows needs a unique class name for each window instance
// to derive a unique name, a pointer to "this" is used
static std::atomic_int S_cnt;
std::stringstream ss;
ss << "AESDK_OpenGL_Win_Class" << S_cnt.load();
S_cnt++;
className = ss.str();

 If it's the same plugin applied multiple times, this should be ok. 

Translate
Engaged ,
Mar 03, 2025 Mar 03, 2025

If you have multiple different plugins based on the old GLator sample you'll need to change the string on windows (from GL_base.cpp):

// very tricky, windows needs a unique class name for each window instance
// to derive a unique name, a pointer to "this" is used
static std::atomic_int S_cnt;
std::stringstream ss;
ss << "AESDK_OpenGL_Win_Class" << S_cnt.load();
S_cnt++;
className = ss.str();

 If it's the same plugin applied multiple times, this should be ok. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 03, 2025 Mar 03, 2025

Really thanks for your help, so my understand is that for each plugin based on the old GLator sample, I only need to change the string "AESDK_OpenGL_Win_Class" to a unique name, that's enough?

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Mar 04, 2025 Mar 04, 2025
LATEST

Yes that's correct. 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines