diff options
author | Keith Packard <keithp@keithp.com> | 2008-03-18 16:06:06 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-11-24 13:24:39 -0800 |
commit | 6f734aecaec4f5c6152c3ebca197ef65bb4523da (patch) | |
tree | f8c72ebdbbfe39996a89e9ca30a7e432467608f5 /randr | |
parent | 197aa784694992f6bcfd194932309e440334c237 (diff) |
Eliminate inverse matrix from randr transform protocol
It is easier, and potentially more precise, to compute the inverse in the
server where everything can eventually be kept in floating point form.
Diffstat (limited to 'randr')
-rw-r--r-- | randr/rrcrtc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/randr/rrcrtc.c b/randr/rrcrtc.c index 6559d51ce..e0fafce7a 100644 --- a/randr/rrcrtc.c +++ b/randr/rrcrtc.c @@ -1341,14 +1341,12 @@ ProcRRGetCrtcTransform (ClientPtr client) reply->hasTransforms = crtc->transforms; transform_encode (client, &reply->pendingTransform, &pending->transform); - transform_encode (client, &reply->pendingInverse, &pending->inverse); extra += transform_filter_encode (client, extra, &reply->pendingNbytesFilter, &reply->pendingNparamsFilter, pending); transform_encode (client, &reply->currentTransform, ¤t->transform); - transform_encode (client, &reply->currentInverse, ¤t->inverse); extra += transform_filter_encode (client, extra, &reply->currentNbytesFilter, &reply->currentNparamsFilter, |