-
Notifications
You must be signed in to change notification settings - Fork 11
Lazy and concurrent command buffer evaluation #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
cyfra-core/src/main/scala/io/computenode/cyfra/core/GBufferRegion.scala
Outdated
Show resolved
Hide resolved
cyfra-runtime/src/main/scala/io/computenode/cyfra/runtime/VkAllocation.scala
Outdated
Show resolved
Hide resolved
cyfra-runtime/src/main/scala/io/computenode/cyfra/runtime/PendingExecution.scala
Outdated
Show resolved
Hide resolved
43d595e to
b4643d3
Compare
b4643d3 to
cdb7900
Compare
| case b: VkBinding[?] => Some(b.buffer) | ||
| case _ => None | ||
|
|
||
| class VkBuffer[T <: Value: {Tag, FromExpr}] private (val length: Int, underlying: Buffer) extends VkBinding(underlying) with GBuffer[T] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am against putting multiple top-level public defs (classes) in one source file. It could be in the companion object if we aim for that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rejected because it makes GBinding ugly
ae35739 to
409e75d
Compare
No description provided.