Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Hawkrex

Pages: [1]
1
SFML projects / Re: [Release][GUI] ImGui-SFML
« on: July 19, 2020, 08:16:34 pm »
Hello,

I used to work with Imgui 1.61 and SFML 2.5.0 (and your interface but can't remember the version), and I decided to update to Imgui 1.77, SFML 2.5.1 and imgui-sfml 2.1 but I have the following error when my program opens :

Quote
The procedure entry point ??0Cursor@sf@@QAE@XZ could not be located in the dynamic link library.


In the ouput I have :

Quote
Exception thrown at 0x77CF36F0 (ntdll.dll) in Test.exe: 0xC0000139: Entry Point Not Found.
The program '[0x1D90] Test.exe' has exited with code -1073741511 (0xc0000139) 'Entry Point Not Found'.

Do you have any idea of what's going wrong ?

2
SFML projects / Re: [Release][GUI] SFML + ImGui lib
« on: October 14, 2017, 01:43:01 pm »
I just find out that in the version of imgui-SFML.h I had, there was no include guard. So I added a #pragma once and it works.

3
SFML projects / Re: [Release][GUI] SFML + ImGui lib
« on: October 10, 2017, 11:33:11 pm »
Hi,

first thank you for the lib <3

There's just one thing that don't work, when I try to do :
const sf::Texture& tex = TextureManager::getTexture("randomName");
ImGui::Image(tex);

but the compiler tells me :

Quote
'ImGui::Image' : the function doesn't take 1 argument

Can somebody help me please ?

Pages: [1]
anything