Skip to content

Commit

Permalink
[orx-syphon] Update for change in ColorBufferGL3 constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinRNDR committed Aug 26, 2024
1 parent 1655d2e commit 141d1fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orx-jvm/orx-syphon/src/main/kotlin/SyphonClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class SyphonClient(private val appName: String? = null, private val serverName:
* GL_TEXTURE_RECTANGLE is necessary
*/
val GL_TEXTURE_RECTANGLE = 0x84F5
val rectBuffer = ColorBufferGL3(GL_TEXTURE_RECTANGLE, name, TextureStorageModeGL.IMAGE, w, h, 1.0, ColorFormat.RGBa, ColorType.UINT8, 0, BufferMultisample.Disabled, Session.root)
val rectBuffer = ColorBufferGL3(GL_TEXTURE_RECTANGLE, name, w, h, 1.0, ColorFormat.RGBa, ColorType.UINT8, 0, BufferMultisample.Disabled, Session.root)

/**
* Only create a new buffer if it's size changed
Expand Down

0 comments on commit 141d1fa

Please sign in to comment.