Sign In
Robotic Pandas
On abstractions for building next generation user interfaces that utilize programmable GPUs to provide naturalistic and cinematic experiences.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Bling
Archive
Archives
November 2009
(2)
July 2009
(4)
February 2009
(1)
December 2008
(1)
October 2008
(7)
September 2008
(3)
MSDN Blogs
>
Robotic Pandas
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Robotic Pandas
Designing a GPU-oriented geometry abstraction – Part Two.
Posted
over 3 years ago
by
Sean McDirmid
0
Comments
My last post described the problem of crafting an appropriate geometry abstraction for Bling. Bling previously solved the code problem for vertex and pixel shading, but lacked decent geometry input abstractions as well as an abstraction that supported...
Robotic Pandas
Designing a GPU-oriented geometry abstraction – Part One.
Posted
over 3 years ago
by
Sean McDirmid
0
Comments
One the inputs of rendering via programmable shading on a modern graphics card is a collection of vertices associated with some per-vertex properties used in shader computations. When programming the GPU, this collection of vertices is commonly abstracted...
Robotic Pandas
What is a programmable abstraction?
Posted
over 3 years ago
by
Sean McDirmid
0
Comments
In a recent blog post I described the principles behind Bling’s design. The primary principle is preferring programmable over fixed abstractions. But I feel that my definition of a programmable abstraction is so far unsatisfactory and undeveloped. To...
Robotic Pandas
Announcing Bling 3!
Posted
over 3 years ago
by
Sean McDirmid
0
Comments
I’d like to announce a newly rewritten release of Bling with many improvements and exciting new features. Bling is a novel experiment in how WPF/UI programming can be enhanced via a lightweight domain-specific language hosted completely within C#. Bling...
Robotic Pandas
A web browser suitable for Harry Potter in WPF!
Posted
over 3 years ago
by
Sean McDirmid
0
Comments
Daily Prophet eat your heart out! Here is a prototype web browser we threw together in Bling : We (myself, my intern lighting-export Li SiYu, and a former intern Wang Chao who worked on the browser part) started with code from Chris Cavanagh's...
Robotic Pandas
Fun(ctional) graphics in C#!
Posted
over 3 years ago
by
Sean McDirmid
0
Comments
Graphics programming often involves customizing and combining well known techniques as mathematic formulas and algorithms related to geometry, lighting, physics, and so on. For performance and architecture reasons, realizing these formulas in a real programming...
Robotic Pandas
Bling WPF hits V1
Posted
over 3 years ago
by
Sean McDirmid
2
Comments
I'd like to announce a new and improved version of Bling WPF . In this version, we have redone the wrappers around WPF databinding and pixel shading for better usability, while a lot of documentation and examples have been added to the distribution and...
Robotic Pandas
New Bling WPF release with metaballs!
Posted
over 4 years ago
by
Sean McDirmid
1
Comments
No, not meatballs. I've done a lot of work on Bling this month, the first of which is writing a paper on the technique used to build Bling. I've also overhauled how pixel shader effects are expressed so that even less boilerplate is required than before...
Robotic Pandas
Shading Blobs with Bling WPF!
Posted
over 4 years ago
by
Sean McDirmid
1
Comments
I updated Bling WPF to version 0.6, get it at the normal place ( http://www.codeplex.com/bling ). Mostly, I changed the DSL to get rid of more boilerplate code. Now you can create multiple input and parameter pixel shader effects with only a few lines...
Robotic Pandas
Angles as doubles considered harmful
Posted
over 4 years ago
by
Sean McDirmid
0
Comments
One problem with the .NET library is the inconsistent use of radians and degrees to represent angles: System.Math angle functions assume angle are expressed in radian while WPF assumes angles are expressed in degrees. Trouble arises when you try to mix...
Robotic Pandas
WPF Signal Library is now Bling WPF!
Posted
over 4 years ago
by
Sean McDirmid
0
Comments
I’m rebranding the signal library as Bling WPF since it now contains support for expressing pixel shaders in C#. The release I’m putting out today polishes the pixel shader implementation that I released last week and fixes lots of outstanding issues...
Robotic Pandas
Writing WPF pixel shaders in C#!
Posted
over 4 years ago
by
Sean McDirmid
0
Comments
This week I saw a great project, Brahma , on expressing shader-based GPU computation in C#/LINQ. Using Brahma, one can write a simple LINQ query to transform a matrix without ever touching HLSL code or compiler, neat stuff! The advantage of this approach...
Robotic Pandas
Twilight of the High-level UI Toolkit
Posted
over 4 years ago
by
Sean McDirmid
0
Comments
I was reading Tim Sweeney’s write up on how fixed function GPUs and the APIs that depend on them are quickly becoming obsolete. Basically, as GPUs move toward programmable “shaders,” graphic engine writers can easily whip up their own efficient graphic...
Robotic Pandas
Reaction Diffusion using WriteableBitmap
Posted
over 4 years ago
by
Sean McDirmid
1
Comments
For a while, I’ve been experimenting with reaction diffusion to provide for more “life like” surfaces. This reaction diffusion algorithm spreads colors out for a diffuse effect. To ensure responsiveness in the UI, the diffusion logic is run in a timer...
Robotic Pandas
Curved Polygons in WPF!
Posted
over 4 years ago
by
Sean McDirmid
1
Comments
I found something on the web http://www.antigrain.com/research/bezier_interpolation/index.html about using Bezier curves to build polygons with smooth corners. Anyways, I ported this to WPF and it works very well! Basically, consider the last point (point0...
Robotic Pandas
So long Jay.
Posted
over 4 years ago
by
Sean McDirmid
0
Comments
As a young PhD student about 10 years ago, I started out at the University of Utah in the lab of Jay Lepreau. Jay was an enigmatic demanding systems professor who was still genuine and approachable. I’m not sure what else to day, except that I’m still...
Robotic Pandas
WPF CompositionTarget.Rendering/Animation Responsiveness
Posted
over 4 years ago
by
Sean McDirmid
1
Comments
Check out the following small program: public partial class App : Window { [ STAThread ] public static void Main( string [] args) { var win = new App (); Application app = new Application (); app.Run(win); } public App() { ...
Robotic Pandas
Signals for WPF in C# AND XAML!
Posted
over 4 years ago
by
Sean McDirmid
1
Comments
I would like to introduce the WPF signal library on codeplex, which is my wrapper around .NET 3.5 that provides a higher level interface to dependency properties in C#. Currently, databinding in C# and XAML is verbose and painful: you have to call BindingOperations...
Page 1 of 1 (18 items)