Search the Community
Showing results for tags 'Driver'.
-
In my game with on level with many objects memory was increasing pretty fast and fps starts lowering at some point even if nothing happens. In example with single light in release mode memory usage increased for me from 150 to 300 for 5 mins, With more lights and more fps (vsync off and maybe release mode as well) this happens much faster - around 10 Mb per seconds. #include "UltraEngine.h" using namespace UltraEngine; int main(int argc, const char* argv[]) { auto displays = GetDisplays(); auto window = CreateWindow("Ultra Engine", 0, 0, 1280, 720, displays[0], WINDOW_CENTER | WINDOW_TITLEBAR); auto framebuffer = CreateFramebuffer(window); auto world = CreateWorld(); world->RecordStats(true); auto camera = CreateCamera(world); camera->SetClearColor(0.125); camera->SetFov(70); camera->Move(0, 2, -8); auto ground = CreateBox(world, 20, 1, 20); ground->SetPosition(0, -0.5, 0); ground->SetColor(0, 1, 0); vector<shared_ptr<PointLight>> lights; for (int i = -10; i < 10; i++) { auto light = CreatePointLight(world); lights.push_back(light); light->SetPosition(i, 0, 0); } //Main loop while (window->Closed() == false and window->KeyHit(KEY_ESCAPE) == false) { world->Update(); world->Render(framebuffer, false); window->SetText("FPS: " + String(world->renderstats.framerate) + " RAM: " + WString(GetMemoryUsage() / 1024)); } return 0; }
-
My problem is the following: I bought Leadwerks some weeks ago, and now I want to use it. As it requires OpenGL4, I believed that it would run on the latest version of RadeonSI supporting OpenGL 4.1, but when I try to launch the application, A window pops up saying that it "Failed to initialize Graphics" and that I should update my graphics driver. This is a thing that I do not want, as AMD Crimson edition is ****. When i launch the application with steam opened via terminal, it says that it is running in "experimental openGL 3 fallback". Im sure that the driver suports openGL 4.1, as I have checked it via GLXINFO My system is: CPU: Intel Pentium G4400 GPU: AMD HD 7770 (Cape Verde XT) Ram: 16 GB DDR4 OS: Ubuntu 15.10 Driver: RadeonSI over Mesa 11.3 devel.
-
Hello! Today, I bought this development kit via the Steam store, and ran it for the first time. I encountered the same error as this user, but I am running it on a laptop, not a desktop; as such, I do not know if the drivers on http://www.leadwerks.com/werkspace/page/drivers would work for me. There is a link below the windows section ("For laptop graphics drivers please see AMD's website."), but all it does is lead to the main AMD download page. My laptop is a Toshiba Satellite L875 (running Windows 7, 64-bit,) containing a Radeon HD 7670M graphics card. The card's driver version is "14.501.1003.0" according to dxdiag. Driver model is WDDM 1.1. If you could point me to a working driver, or give some tips, I would greatly appreciate it!