Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

Gio

Gio implements portable immediate mode GUI programs in Go.
Collective - Host: opensource - https://opencollective.com/gioui - Website: https://gioui.org - Code: https://github.com/gioui

app: [Android] set XDG_CACHE_HOME to make os.UserCacheDir work

os.UserCacheDir can't work on Android because it doesn't have
access to the Java app context. Gi...

github.com/gioui/gio - 2395659be373b319821ed4c04c674edb5f12e22d authored over 4 years ago by Elias Naur <[email protected]>
app/internal/log: use the app ID as the Android log tag

This way, a Gio app's logs can be filtered uniquely, which wasn't
possible before since the tag ...

github.com/gioui/gio - e97adeedd9186530b84a40ebd0ebb7af66eb0e07 authored over 4 years ago by Daniel Martí <[email protected]>
cmd: add a go.local.mod for development

It's essentially a copy of go.mod, but with the gioui.org module replaed
with the parent directo...

github.com/gioui/gio - ec34eb4919f01879b180418df5b0364bf47456b2 authored over 4 years ago by Daniel Martí <[email protected]>
app/internal/headless: [Android] expose Java initialization method

Android apps may want to run Go code independent of the Gio Android Activity.
Expose a Gio.init ...

github.com/gioui/gio - 33493501a63fc70a433f063c11b7a7be163a24d8 authored over 4 years ago by Elias Naur <[email protected]>
app/internal/window: [Android] remove JNI_OnLoad JNI callback

There can only be one JNI_OnLoad callback per JNI library, and the
Gio program may need it for i...

github.com/gioui/gio - cde651db60e1d9ae88e820a4d51391e23e640274 authored over 4 years ago by Elias Naur <[email protected]>
app/internal/window: don't rely on JNI_OnCreate for getting the JavaVM

We're about to remove the global JNI_OnLoad constructor, and the
JavaVM singleton is just as eas...

github.com/gioui/gio - 0c0a22bee73cd552c6c6c861d2a92edabea7ab6d authored over 4 years ago by Elias Naur <[email protected]>
app/internal/window: remove unused #includes

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - c7c5b8726414f40aa46ff1e99bb24cd5f7dfc4bd authored over 4 years ago by Elias Naur <[email protected]>
app/internal/window: removed unused function

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 7301ebe0ef43a297f1c0fa1296fd463eca31f872 authored over 4 years ago by Elias Naur <[email protected]>
widget: report whether Value changed after Enum.Update and Bool.Update

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - f08568a6dfc3890dcc8ea76c11f1a4cd436a57c1 authored over 4 years ago by Elias Naur <[email protected]>
example/kitchen: add Switch widget

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 05efb9b5f4529fa3d6446d238f461a84792f3644 authored over 4 years ago by Elias Naur <[email protected]>
widget/material: add Switch widget

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 26da49e145f37590f6927328653560af338d8534 authored over 4 years ago by Elias Naur <[email protected]>
content: note that only latest Go and module is supported

Fixes gio#107

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/giouiorg - 564659b0544802379a0ee74fb10b81a6cb648521 authored over 4 years ago by Elias Naur <[email protected]>
widget: rename CheckBox to Bool

We're about to introduce the Switch widget that re-uses the same
state type as CheckBox. The Boo...

github.com/gioui/gio - 6b4eb710b328b66e7165fb9d41990d6f81d447af authored over 4 years ago by Elias Naur <[email protected]>
io/router: add tests for Enter/Leave pointer events

Signed-off-by: Chris Waldon <[email protected]>

github.com/gioui/gio - 13941c9f1b3c5894ef6c2c0f34f60c6462302808 authored over 4 years ago by Chris Waldon <[email protected]>
io/router: send pointer Enter/Leave events

This commit introduces a naive system for sending events
when a pointer enters or leaves a point...

github.com/gioui/gio - 1c113f19c67363660b0a80f1602207e7da8aff0a authored over 4 years ago by Chris Waldon <[email protected]>
io/pointer: define new Enter/Leave pointer events

Signed-off-by: Chris Waldon <[email protected]>

github.com/gioui/gio - 6501ecf2a0d52a985fc82fe0d06f7ab0a671727d authored over 4 years ago by Chris Waldon <[email protected]>
widget,widget/material: export Enum.Value

The Value method both updated the enum value and returned it.

In order to access the current va...

github.com/gioui/gio - f1e266a9e70f49385dd56666cd8a3ca53a48fcc7 authored over 4 years ago by Elias Naur <[email protected]>
widget,widget/material: export CheckBox.Checked

Similar to the previous change to Enum, expose the current state of
the CheckBox. Rename the Che...

github.com/gioui/gio - 52d8a8867d7208e8cb57cd1540fe470777eac132 authored over 4 years ago by Elias Naur <[email protected]>
example,cmd: bump gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - a1166e66521a982db2aabccc0c88595d86be88b9 authored over 4 years ago by Elias Naur <[email protected]>
layout,app,io/system: move Queue from app.Window to FrameEvent

Change gioui.org/commit/0e70fbc1262920a69c60409285795b6bb8701b09
added a note that app.Window.Qu...

github.com/gioui/gio - 8d9612f9aa462cb5ef571518694a3def64bc9e50 authored over 4 years ago by Elias Naur <[email protected]>
layout: replace NewContext with a Queue argument to Context.Reset

We're about to reduce the scope of the Window.Queue by moving it
to FrameEvent. As a consequence...

github.com/gioui/gio - 289fe02b90a986253fd80a2538f50c7c9607c007 authored over 4 years ago by Elias Naur <[email protected]>
layout: fix typo

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - d350f820113e57716d9fea3f8270d414c3e03130 authored over 4 years ago by Elias Naur <[email protected]>
example: bump gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - d474b5b16a81d11e6012950c1d7bf47f2d8cd85a authored over 4 years ago by Elias Naur <[email protected]>
material: make theme constructors stand-alone functions

The multitude of widget methods on Theme is unnecessary coupling in that all
possible widgets ei...

github.com/gioui/gio - 060cff257f1ddbbe20030fb8408bba33760f0522 authored over 4 years ago by Elias Naur <[email protected]>
widget,widget/material: move Image and Icon to widget package

There is nothing theme-specific about displaying images and icons,
so move the types from the ma...

github.com/gioui/gio - e460e4f4bfa052e4d53a8cc7d4d1f8ef58e6a176 authored over 4 years ago by Elias Naur <[email protected]>
widget/material: report icons dimensions after running Icon.Layout

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - fa7f9d3ba897ef0e4221c3cb1ceb50e98c99e28a authored over 4 years ago by Elias Naur <[email protected]>
gesture: support multiple click actions

Double click or tap actions are common in user interfaces and this
commit adds support for it in...

github.com/gioui/gio - 4db3cb2afbcf56af42bc6718f7dbbd6f0283b304 authored over 4 years ago by Pierre.Curto <[email protected]>
example/kitchen: Use the button passed to iconAndTextButton.Layout

The global iconTextButton variable was used instead of the passed
button.

Signed-off-by: Fabian...

github.com/gioui/gio - b862f4f1745e250ff785856aca4485295ac35d27 authored over 4 years ago by Fabian Geiselhart <[email protected]>
content: link to new Sourcehut project hub

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/giouiorg - 6146c72a213a5ea0b32101dc325bf91d3c74400e authored over 4 years ago by Elias Naur <[email protected]>
app: add note about the safe use of Window.Queue.

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 0e70fbc1262920a69c60409285795b6bb8701b09 authored over 4 years ago by Elias Naur <[email protected]>
example,cmd: update gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 133fa45258fc5f4cb40a4ae6958d77e3a85cc7f7 authored over 4 years ago by Elias Naur <[email protected]>
app/internal/log: add synchronized logger on Android

By default, the standard library log package outputs to stderr.
However, stderr is redirected th...

github.com/gioui/gio - 4bde9fbcaa2d809bb734f04f207d513b44c82323 authored over 4 years ago by Elias Naur <[email protected]>
app/internal/log: fix typo

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 51e4df77070974a962ee62646533ce48f870fe56 authored over 4 years ago by Elias Naur <[email protected]>
gpu/shaders: avoid first-class arrays

Safari's WebGL1 implementation (rightly) complains that first-class
array types are not supporte...

github.com/gioui/gio - 1062d4e79d4198f84beda8ffb3528e6fa8d0a7ff authored over 4 years ago by Elias Naur <[email protected]>
example,cmd: update gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 9218df1db76799ee3b14303765c61b260197b3a0 authored over 4 years ago by Elias Naur <[email protected]>
gpu/gl: detect float FBO support under Safari's WebGL1 implementation

Safari's WebGL does not advertise support for EXT_color_buffer_half_float,
but does support rend...

github.com/gioui/gio - 9842cbd30bfbb39774b506206339c789a38a03a4 authored over 4 years ago by Elias Naur <[email protected]>
gesture: fix typo

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 22f964548b869d1ace6bfcaff8f52a511ce242a9 authored over 4 years ago by Elias Naur <[email protected]>
cmd/gogio: match Android window background with default Gio color

While launching an app on Android, the hard-coded theme is used for
the color. That color is by ...

github.com/gioui/gio - 84d4800a16126efe3128d7978efc5681ceca6aa9 authored over 4 years ago by Elias Naur <[email protected]>
example,cmd: update gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - cf6e128d48352f85c1e8abbbc078c8fed568cc70 authored over 4 years ago by Elias Naur <[email protected]>
app/internal/cocoainit: enable multithread support in Cocoa

According to

https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/Multith...

github.com/gioui/gio - 533bf953f987861bfacb3facb8403146a4c9fdcc authored over 4 years ago by Elias Naur <[email protected]>
ui: fix wrong method name in documentation

Signed-off-by: Fabian Geiselhart <[email protected]>

github.com/gioui/gio - 08dfd2943b6ff6e500fe909abec002dc93a5db16 authored over 4 years ago by Fabian Geiselhart <[email protected]>
example/go.mod: update gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 925f5af930a38c6043036bacf93bf6a904bd3275 authored over 4 years ago by Elias Naur <[email protected]>
gpu: reset to the default framebuffer on reset

The macOS backend doesn't re-create contexts, holding on to the first
created instead. Make sure...

github.com/gioui/gio - 02d4316c560779fbf4c9204c97f4050517a29111 authored over 4 years ago by Elias Naur <[email protected]>
content: add link to first community call video

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/giouiorg - a8b786d6c10db282d534ab5ef8176b4a48f7d8c5 authored over 4 years ago by Elias Naur <[email protected]>
app/internal/window: [Android] use correct JNI Call variant for registerFragment

While we're here,

- replace the registerFragment trampoline with a general variadic
CallVoidMet...

github.com/gioui/gio - aefc6f36256a2a67b111252d814883f4b4ed2442 authored over 4 years ago by Elias Naur <[email protected]>
app: [Android] replace PlatformHandle with JavaVM, AppContext methods

Clearer and fewer types.

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - ae77377f7be6dbb662321571937bf7ac15744f78 authored over 4 years ago by Elias Naur <[email protected]>
app: fix NewWindow comment

Window options are a list now, not a struct.

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 10f932137c33b515093b5e64e4c4899e249eba80 authored over 4 years ago by Elias Naur <[email protected]>
internal/window: [Android] remove unused C function

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 30b46ded6b70bfb1bd16714d775487874abc9c5e authored over 4 years ago by Elias Naur <[email protected]>
content: remove sudo from install commands, mention unikernel port

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/giouiorg - 9bf8d16c8904ffecb05207f872118d2af52f56bb authored over 4 years ago by Elias Naur <[email protected]>
cmd/gogio: include Android themes in .aar outputs

Not strictly necessary, but makes embedding a Gio Android Activity
easier; adding

<activity an...

github.com/gioui/gio - 2b1935d657476207f6ad83114b6bf1f8ca1a8841 authored over 4 years ago by Elias Naur <[email protected]>
example/tabs: add example for tabbed content

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 0cfc914d8b7d1db04f24fcc7644e286f34da42cd authored over 4 years ago by Elias Naur <[email protected]>
Revert "widget/material: propagate ButtonLayout minimum constraints to content"

This reverts commit 52ccc183b54c2a3ccc04fe69cfa08eebaab662a1.

Reason for revert:

This doesn't ...

github.com/gioui/gio - b1aed3eae023d6f18804d9d028acf95c28aa0c87 authored over 4 years ago by Elias Naur <[email protected]>
widget: improve Click description

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - b8cbc1e99d1781b8a8bf07871f78d5d2805dcde6 authored over 4 years ago by Elias Naur <[email protected]>
LICENSE: merge LICENSE-MIT and UNLICENSE

Not a license change.

A single LICENSE file is easier for automatic license detectors and
for p...

github.com/gioui/giouiorg - c7929fd543f1dea057d034975274ab7642eaef0e authored over 4 years ago by Elias Naur <[email protected]>
example/kitchen: add ProgressBar example

Updates the kitchen example codebase showing ProgressBar functionality.

Signed-off-by: metaclip...

github.com/gioui/gio - efce78d414f3adf866b81bf6c149aa6aee8302c6 authored over 4 years ago by metaclips <[email protected]>
widget/material: add ProgressBar

Add progress indicator support to material widget

Signed-off-by: metaclips <[email protected]>

github.com/gioui/gio - da01fbdea784f16b9307a82f3e71e9a981ce94ce authored over 4 years ago by metaclips <[email protected]>
LICENSE: merge UNLICENSE and LICENSE-MIT

The pleasing of automatic license detectors continues.

No license change, merely a merging of L...

github.com/gioui/gio - 221ce023289363fad9b7c2a9431240fa6db144da authored over 4 years ago by Elias Naur <[email protected]>
.builds: add webassembly build test

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 0542796463af460775facab28b5beac4ab4dbee0 authored over 4 years ago by Elias Naur <[email protected]>
example/glfw: fix build

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 97538991d27c431be62fb4d3fbbc9d25a6d11882 authored over 4 years ago by Elias Naur <[email protected]>
example,cmd: update gio

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 1a3bbd5d921bb838bcb7b81e23b23091c25cc779 authored over 4 years ago by Elias Naur <[email protected]>
app/internal: fix Android build

pkg-config doesn't exist for Android.

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 1ad891ff67228d6c28a268c5c254060794ad4083 authored over 4 years ago by Elias Naur <[email protected]>
widget/material: re-center Button label

A previous change propagated the minimum layout constraints to Button's
content, which made Butt...

github.com/gioui/gio - 27d81b8c7ef96084179721035b831be3d71203d1 authored over 4 years ago by Elias Naur <[email protected]>
widget/material: propagate ButtonLayout minimum constraints to content

The previous change fixed a regression where minimum constraints larger than 0
would not affect ...

github.com/gioui/gio - 52ccc183b54c2a3ccc04fe69cfa08eebaab662a1 authored almost 5 years ago by Elias Naur <[email protected]>
widget/material: draw button to max width with ButtonLayout

This patch allows support to draw button to maximum width using ButtonLayout.

github.com/gioui/gio - f7a23ad46a883057e6a7b9641bad493c623d9f6c authored almost 5 years ago by metaclips <[email protected]>
example/kitchen: add ButtonLayout example

Updates the kitchen example codebase showing ButtonLayout functionality.

github.com/gioui/gio - 43df9f26771c4043269741c82025d59a790d196b authored almost 5 years ago by metaclips <[email protected]>
app/internal: use pkg-config for finding system headers and libraries

I've resisted relying on pkg-config in the hope that hard-coded include and
library paths would ...

github.com/gioui/gio - 38ed6d1569354ad5b6b027bb357798dcde90f7ec authored almost 5 years ago by Elias Naur <[email protected]>
widget/material: add ButtonLayout

Add ButtonLayout for adding button behaviour and style to arbitrary content such
as a combined i...

github.com/gioui/gio - 5d7fbd761f4f8a3471005541ec5bf12be1924188 authored almost 5 years ago by metaclips <[email protected]>
app/internal/window,app/internal/egl: avoid X11 dependency in EGL

EGL is window system agnostic, but its egl.h header includex X11
headers by default. Use the MES...

github.com/gioui/gio - a3101c9454b7451c0e3959820d6d2e1b409d2e63 authored almost 5 years ago by Elias Naur <[email protected]>
gpu/gl: remove unused field

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 56c3edef8294ee11cb34738bbb4e6d29a22d5748 authored almost 5 years ago by Elias Naur <[email protected]>
app/internal/d3d11: enable VSync

Signed-off-by: Egon Elbre <[email protected]>

github.com/gioui/gio - acd32c31a2deb54578980d09151b1a25665a8742 authored almost 5 years ago by Egon Elbre <[email protected]>
gpu/backend: remove clear color and depth state

Specifying the clear color and depth at the time of clearing is
less error prone and a better fo...

github.com/gioui/gio - 7fba3bb8feedf907bc4ffd71f0bd6e43f4474fef authored almost 5 years ago by Elias Naur <[email protected]>
ci: add skeleton for sourcehut annotations

This commit adds the necessary task to the CI job to generate sourcehut
annotations as documente...

github.com/gioui/gio - daecdcaabf6785016e949ed824991285fe975835 authored almost 5 years ago by Chris Waldon <[email protected]>
gpu/gl: don't panic if no input layout is bound

Rendering will probably not be correct, but a panic is overreacting.

Signed-off-by: Elias Naur ...

github.com/gioui/gio - 5180bb0e1a50d5535f146c1d7129792125a179ed authored almost 5 years ago by Elias Naur <[email protected]>
op/paint: set subimage Rect when converting image

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - af68e17dd3245dcea870835fd1aedf5f571b19b2 authored almost 5 years ago by Elias Naur <[email protected]>
cmd/giouiorg: serve files from include/files

We're about to add an article that links to a Go program in include/files. Add
the handler for s...

github.com/gioui/giouiorg - 2f052d3f6c1964b81b353005ad426d2d5fdbfccd authored almost 5 years ago by Elias Naur <[email protected]>
add f32color.RGBA

Signed-off-by: Egon Elbre <[email protected]>

github.com/gioui/gio - 7c1a21ce5677e15db79cc78aeaea7a2a183f74e7 authored almost 5 years ago by Egon Elbre <[email protected]>
gpu: fix depth buffer on direct3d and headless opengl

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 7024a0e6914d048cd245b1b2a4fc96df3d9538ab authored almost 5 years ago by Elias Naur <[email protected]>
gpu: fix clip intersection with the D3D backend

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 61529c2cb6f424cf8705b016f3954a874ac0a5c6 authored almost 5 years ago by Elias Naur <[email protected]>
CI: add wine on Linux for the Windows e2e test

Installing it on Debian was enough, with the only wrinkle that
propagating -race won't work when...

github.com/gioui/gio - acfe91ec3e33b65b4e6d8d266b66161596ac757d authored almost 5 years ago by Daniel Martí <[email protected]>
cmd/gogio: add the first Windows e2e test via Wine

Since Wine is heavily tied to X11, we build its end-to-end test driver
on top of X11's. We use t...

github.com/gioui/gio - 49000ae4a3e3af09e515f1319fc89c68dfc76c8b authored almost 5 years ago by Daniel Martí <[email protected]>
cmd/gogio: reuse the test binary to call gogio in the e2e tests

We were using 'go run . <args>' before, which works fine, but does mean
re-linking a new binary ...

github.com/gioui/gio - 9bbeb92b614c2520c99ebc33b5e822caf6325076 authored almost 5 years ago by Daniel Martí <[email protected]>
cmd/gogio: groundwork for Windows e2e tests on Wine

First, move from debian unstable to testing, since sway was promoted to
testing as of earlier th...

github.com/gioui/gio - b064899967b1c7b953a1aa429a4041c850c52a47 authored almost 5 years ago by Daniel Martí <[email protected]>
example,cmd: bump gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 48eb5c666cdc1989d9c73fa3007188c9b1a26b71 authored almost 5 years ago by Elias Naur <[email protected]>
app/internal/window: (Windows) don't send zero-sized draw requests

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - bd7c7a108a9ea67f83e18f79e898b665d7906769 authored almost 5 years ago by Elias Naur <[email protected]>
example,cmd: bump gio version

github.com/gioui/gio - 3738aa43a8864295cd0b799d718c569587046ce2 authored almost 5 years ago by Elias Naur <[email protected]>
README.md: link to Larry's GitHub mirror

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 62a2f3b8c8a4995a9f3bd500ef7d99d227ad3d4f authored almost 5 years ago by Elias Naur <[email protected]>
app/internal/window: (Windows) return all errors from NewContext

Instead of just returning the first error (from Direct3D), return
the errors from all attempts.
...

github.com/gioui/gio - 22e15da67c48ea6917ea91094c70870850ca76d5 authored almost 5 years ago by Elias Naur <[email protected]>
gpu/shaders: be more robust against floating point inaccuracies

We're forced by compatibility to encode an integer state into a
floating point. Make the implici...

github.com/gioui/gio - 8405bf0e47548ed60affb5428a927f0e09c76478 authored almost 5 years ago by Elias Naur <[email protected]>
layout: don't force Expanded Stack children larger than their minimum

Instead, honor the constraints after laying out both Stacked and
Expanded children.

Signed-off-...

github.com/gioui/gio - 148a2828e7bd7a08bab0414c5bcc19f9e8ab5b80 authored almost 5 years ago by Elias Naur <[email protected]>
example,cmd: update gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - c1048a3a543d089409bcabdf58a8e40859786b2d authored almost 5 years ago by Elias Naur <[email protected]>
app/internal/d3d11: try more floating point formats

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 0ceccf3c934b45f0a75b1ea660344ad3d3942729 authored almost 5 years ago by Elias Naur <[email protected]>
example,cmd: update gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 0160bba02074291e983aa6937db8fb982c6bc6b0 authored almost 5 years ago by Elias Naur <[email protected]>
app/internal/d3d11: detect hardware floating point support

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - b3a3c34088df728aa714a3d7dc2c3ceb8e8927d6 authored almost 5 years ago by Elias Naur <[email protected]>
io/router: add pointer drag-and-move test

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 050f43d60a1d5902cd1de04e81a07d83ab288a29 authored almost 5 years ago by Elias Naur <[email protected]>
app/internal/d3d11: only clear depth buffer if it exists

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - a448825d48787f9f0172c4b1104da774338f3b29 authored almost 5 years ago by Elias Naur <[email protected]>
example,cmd: update gio version

Signed-off-by: Elias Naur <[email protected]>

github.com/gioui/gio - 330705a4231d296e46b91de6101ab73f527bff8f authored almost 5 years ago by Elias Naur <[email protected]>
internal/cmd/convertshaders: target 9.1 compatibility shader model

Direct3D 11 supports Direct3D 9.1 level hardware, but only if the shaders are
compiled for targe...

github.com/gioui/gio - b194a0ce58fff323642bbf72b7e153e51f7737d0 authored almost 5 years ago by Elias Naur <[email protected]>
internal/cmd/convertshaders: replace fxc.exe with D3DCompile

D3DCompile successfully compiles shaders fxc.exe doesn't. As a bonus
the DirectX SDK is no longe...

github.com/gioui/gio - 1d3a9fb2d6c1142da497f56a577b54feda288a09 authored almost 5 years ago by Elias Naur <[email protected]>
app/internal/d3d11: return structured ErrorCode errors from d3d functions

While here, change the ErrorCode.Code field type to uint32 to better reflect
its native counterp...

github.com/gioui/gio - 73fc5e14825ccc57e8672881e6f2ed45bd0855b0 authored almost 5 years ago by Elias Naur <[email protected]>
cmd/giouiorg: remove static file handler

For some reason webassembly file was starting to serve as
application/octet-stream, not applicat...

github.com/gioui/giouiorg - e3aa2575d2c8bb8af8ab51207e3b2e6a7eb3cd10 authored almost 5 years ago by Elias Naur <[email protected]>