Giter VIP home page Giter VIP logo

Comments (18)

nitronoid avatar nitronoid commented on May 14, 2024 4

For anyone like me who wanted to get filament working with Qt, I've created a simple hello world example based on @cgmb's repo which you can find here. I've only tested it on Linux, but in theory since both Qt and Filament are cross platform it should work on Windows too (with some tweaks to the Makefile).

from filament.

cgmb avatar cgmb commented on May 14, 2024

I recently integrated filament into my GLFW application. A "Getting Started" guide would definitely have saved me time. There were a few specific things I noticed:

  1. The README is missing the creation of vertexBuffer and indexBuffer. IMO, those are of similar importance to the other parts of setup that are included.

  2. The sample apps are very nice, but they depend on the ~2000 LOC in samples/app/. Even samples/vk_hellotriangle.cpp is hard to follow because some important initializations are done inside abstractions in the sample app. I like having those larger examples, but a Getting Started guide with a complete ~200 LOC hellotriangle.cpp with no dependencies and very little abstraction would be a wonderful addition.

  3. The ways transforms are done in the samples seems different from what's stated in the class documentation for TransformManger, which shows using TransformManger::create. TransformManger::getInstance says it can return an invalid instance if the component doesn't exist, but none of the samples seem to call create, so it's not clear why a valid component is returned. I like the way the samples do it, but I would not have assumed this would work based on the docs:

auto& tcm = engine->getTransformManager();
tcm.setTransform(tcm.getInstance(renderable),
    math::mat4f::rotate(M_PI_4, math::float3{0, 0, 1}));

from filament.

romainguy avatar romainguy commented on May 14, 2024

We definitely need to write better samples and documentation. Right now a good starting point is android/samples/hello-triangle (except it's in Kotlin not C++ :).

For #3, the reason it works is that we automatically create a transform component for renderables when we load meshes in the sample apps (MeshAssimp.cpp and MeshIO.cpp). Which emphasizes your point about creating simpler sample apps so it's easier to understand what's going on.

from filament.

romainguy avatar romainguy commented on May 14, 2024

Looking more closely you are right some samples use the transform manager without creating the component first. I'll check what's going on there.

from filament.

romainguy avatar romainguy commented on May 14, 2024

Nevermind I remember now. When creating a Renderable, a TransformManager component is automatically added if the entity doesn't have one alredy. We need to document this.

from filament.

prideout avatar prideout commented on May 14, 2024

As a side note, one cool thing about GitHub wikis is that they are cloneable, so we can use our favorite text editors to work on the wiki:

https://gist.github.com/subfuzion/0d3f19c4f780a7d75ba2

from filament.

pixelflinger avatar pixelflinger commented on May 14, 2024

@cgmb, at some point I decided that creating a Renderable would always create a Transform component -- because that's what we want 99% of the time. I didn't update the doc at the time. So, for Renderables, it should never be invalid.

from filament.

Raki avatar Raki commented on May 14, 2024

I recently integrated filament into my GLFW application. A "Getting Started" guide would definitely have saved me time. There were a few specific things I noticed:

  1. The README is missing the creation of vertexBuffer and indexBuffer. IMO, those are of similar importance to the other parts of setup that are included.
  2. The sample apps are very nice, but they depend on the ~2000 LOC in samples/app/. Even samples/vk_hellotriangle.cpp is hard to follow because some important initializations are done inside abstractions in the sample app. I like having those larger examples, but a Getting Started guide with a complete ~200 LOC hellotriangle.cpp with no dependencies and very little abstraction would be a wonderful addition.
  3. The ways transforms are done in the samples seems different from what's stated in the class documentation for TransformManger, which shows using TransformManger::create. TransformManger::getInstance says it can return an invalid instance if the component doesn't exist, but none of the samples seem to call create, so it's not clear why a valid component is returned. I like the way the samples do it, but I would not have assumed this would work based on the docs:
auto& tcm = engine->getTransformManager();
tcm.setTransform(tcm.getInstance(renderable),
    math::mat4f::rotate(M_PI_4, math::float3{0, 0, 1}));

Hi, @cgmb I'm trying to use filament with GLFW,

 glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
 window = glfwCreateWindow(TargetWidth, TargetHeight, "Hello World", NULL, NULL);
 winHandle = glfwGetWin32Window(window);
 engine = Engine::create();
 swapChain = engine->createSwapChain(winHandle);

......
......

  while (!glfwWindowShouldClose(window))
 {
       update();
       if (renderer->beginFrame(swapChain))
     {
	renderer->render(view);
	renderer->endFrame();
     }
  }

'
But I'm getting the 'wglMakeCurrent( )' failed error

class utils::PostconditionPanic
in virtual void filament::PlatformWGL::makeCurrent(Platform::SwapChain *, Platform::SwapChain *):184
in file E:\FilamentSpace\filament-master\filament\src\driver\opengl\PlatformWGL.cpp
reason: wglMakeCurrent() failed. hdc = 00000000001D0B56

Please help me if you have any idea about cause for this error...

from filament.

cgmb avatar cgmb commented on May 14, 2024

Sorry @Raki, my target platform is Linux and I only ever hacked things together before I had to move on. But, I did get my hello triangle working with GLFW on Ubuntu. The code is very, very rough, and I have no idea if it will be of any use at all, but now it's there for anyone interested.

from filament.

Raki avatar Raki commented on May 14, 2024

Sorry @Raki, my target platform is Linux and I only ever hacked things together before I had to move on. But, I did get my hello triangle working with GLFW on Ubuntu. The code is very, very rough, and I have no idea if it will be of any use at all, but now it's there for anyone interested.

@cgmb Thank you for the response and the example. I will go through it. I am sure it will be of some help :-) to me.

from filament.

kavaari avatar kavaari commented on May 14, 2024

@Raki and others if you are still struggling with this, here is a solution:
You are passing Win32 HWND handle to createSwapChain(), instead you should pass the window's HDC handle.

from filament.

shartte avatar shartte commented on May 14, 2024

So it is unclear to me what I need to delete to clean up, and when I can do so.
When I delete an entity, do I need to delete all components manually as well, or are they automatically deleted? It seems to me that sometimes if i repeatedly create/delete entities, I hit a point where I crash in TransformManager where it is trying to setup an entity to be it's own parent. I am not however deleting transform components when I delete the entities. Should I? The documentation on TransformManager doesn't say.

from filament.

romainguy avatar romainguy commented on May 14, 2024

@pixelflinger can give you more info

from filament.

romainguy avatar romainguy commented on May 14, 2024

We also should add more API docs (libmath and let mostly)

from filament.

romainguy avatar romainguy commented on May 14, 2024

Thank you @nitronoid!

from filament.

Raki avatar Raki commented on May 14, 2024

@Raki and others if you are still struggling with this, here is a solution:
You are passing Win32 HWND handle to createSwapChain(), instead you should pass the window's HDC handle.

@kavaari Thank you for the suggestion. As per the filament-20190426-windows build, if we pass HDC handle, app is crashing. It is working fine with Win32 HWND. (Also need to introduce a delay of 17ms in glfw renderloop without the delay command buffer is being flooded)

from filament.

roxlu avatar roxlu commented on May 14, 2024

The issue is caused when creating your own context and using the createSwapChain(void* nativeWindow) function. Instead use the createSwapChain(int width, int height, int flags) version. See these comments and this repository that demonstrates a fix

from filament.

FireBanana avatar FireBanana commented on May 14, 2024

@cgmb Thanks for the example, after smashing my head on the wall for days I found the calls I was missing.

from filament.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.