Re: [Mesa-dev] [PATCH] st/va: hardlink driver instances to gallium_drv_video.so

2016-01-05 Thread Jimmy Berry
I have been holding off v2 with correct spacing before \ (seemingly missed the first time) waiting for a review to confirm that this is the right approach as agreed in IRC. Let me know if anything else. -- Jimmy On Sat, Dec 19, 2015 at 10:57 PM, Jimmy Berry <ji...@boombatower.com>

[Mesa-dev] [PATCH] st/va: hardlink driver instances to gallium_drv_video.so

2015-12-19 Thread Jimmy Berry
Removes the need to set LIBVA_DRIVER_NAME=gallium for supported targets and is consistent with vdpau and general gallium drivers. Signed-off-by: Jimmy Berry <ji...@boombatower.com> --- src/gallium/targets/va/Makefile.am | 14 ++ 1 file changed, 14 insertions(+) diff --git

Re: [Mesa-dev] [PATCH v4] gallium/hud: control visibility at startup and runtime.

2015-11-11 Thread Jimmy Berry
For documentation purposes, we discussed things in IRC and should be reflected in v6. -- Jimmy On Sat, Nov 7, 2015 at 10:49 PM, Ilia Mirkin <imir...@alum.mit.edu> wrote: > On Sat, Nov 7, 2015 at 11:42 PM, Jimmy Berry <ji...@boombatower.com> wrote: >> - env GALLIUM_HUD_VIS

Re: [Mesa-dev] [PATCH] gallium/hud: document GALLIUM_HUD_PERIOD in envvars.html.

2015-11-11 Thread Jimmy Berry
Do I need to do something to else to get this committed? Not 100% on process. -- Jimmy On Wed, Nov 4, 2015 at 2:32 AM, Samuel Pitoiset <samuel.pitoi...@gmail.com> wrote: > Reviewed-by: Samuel Pitoiset <samuel.pitoi...@gmail.com> > > > > On 11/04/2015

Re: [Mesa-dev] [PATCH v3] gallium/hud: control visibility at startup and runtime.

2015-11-09 Thread Jimmy Berry
On Mon, Nov 9, 2015 at 11:28 AM, Brian Paul <bri...@vmware.com> wrote: > On 11/07/2015 09:05 PM, Jimmy Berry wrote: >> >> - env GALLIUM_HUD_VISIBLE: control default visibility >> - env GALLIUM_HUD_SIGNAL_TOGGLE: toggle visibility via signal >> --- >> docs/

[Mesa-dev] [PATCH v6] gallium/hud: control visibility at startup and runtime.

2015-11-09 Thread Jimmy Berry
- env GALLIUM_HUD_VISIBLE: control default visibility - env GALLIUM_HUD_SIGNAL_TOGGLE: toggle visibility via signal --- Added fflush(stderr) per request. docs/envvars.html | 6 ++ src/gallium/auxiliary/hud/hud_context.c | 29 + 2 files

[Mesa-dev] [PATCH v5] gallium/hud: control visibility at startup and runtime.

2015-11-07 Thread Jimmy Berry
- env GALLIUM_HUD_VISIBLE: control default visibility - env GALLIUM_HUD_SIGNAL_TOGGLE: toggle visibility via signal --- Added static to sig_handled as it should have been. docs/envvars.html | 6 ++ src/gallium/auxiliary/hud/hud_context.c | 28

[Mesa-dev] [PATCH v3] gallium/hud: control visibility at startup and runtime.

2015-11-07 Thread Jimmy Berry
- env GALLIUM_HUD_VISIBLE: control default visibility - env GALLIUM_HUD_SIGNAL_TOGGLE: toggle visibility via signal --- docs/envvars.html | 6 ++ src/gallium/auxiliary/hud/hud_context.c | 28 2 files changed, 34 insertions(+) diff --git

[Mesa-dev] [PATCH v4] gallium/hud: control visibility at startup and runtime.

2015-11-07 Thread Jimmy Berry
- env GALLIUM_HUD_VISIBLE: control default visibility - env GALLIUM_HUD_SIGNAL_TOGGLE: toggle visibility via signal --- per imirkin's comments: - long to unsigned - ignore signal value of 0 rather than always printing error message (oversight) docs/envvars.html | 6 ++

Re: [Mesa-dev] [PATCH v2] gallium/hud: control visibility at startup and runtime.

2015-11-04 Thread Jimmy Berry
t; Some comments below. > > On 11/04/2015 06:17 AM, Jimmy Berry wrote: >> - env GALLIUM_HUD_VISIBLE: control default visibility >> - env GALLIUM_HUD_SIGNAL_TOGGLE: toggle visibility via signal >> --- >> Thanks for the feedback. >> >> I believe all the

Re: [Mesa-dev] gallium/hud: control visibility at startup and runtime.

2015-11-03 Thread Jimmy Berry
Some I managed to not end up with [PATCH] in subject or my coverletter. This is my first patch to mesa-dev. Hopefully, I have done everything correctly. I posed the idea about a week ago: Manipulate GALLIUM_HUD post-launch (interactively)

[Mesa-dev] [PATCH] gallium/hud: document GALLIUM_HUD_PERIOD in envvars.html.

2015-11-03 Thread Jimmy Berry
--- docs/envvars.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/envvars.html b/docs/envvars.html index bdfe999..173c941 100644 --- a/docs/envvars.html +++ b/docs/envvars.html @@ -179,6 +179,8 @@ Mesa EGL supports different sets of environment variables. See the GALLIUM_HUD -

[Mesa-dev] [PATCH v2] gallium/hud: control visibility at startup and runtime.

2015-11-03 Thread Jimmy Berry
- env GALLIUM_HUD_VISIBLE: control default visibility - env GALLIUM_HUD_SIGNAL_TOGGLE: toggle visibility via signal --- Thanks for the feedback. I believe all the suggested changes have been implemented. One note, all the logic except for the toggle was already in hud_create() and not

[Mesa-dev] Manipulate GALLIUM_HUD post-launch (interactively)

2015-10-28 Thread Jimmy Berry
I have found myself desiring the ability to manipulate the GALLIUM_HUD variable while an application is running. At the most basic simply being able to toggle the hud on and off would be great. Otherwise, one has to relaunch an application and get back to the same state which may not always be