OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ZoomX
(Results
1 - 25
of
26
) sorted by relevancy
1
2
/xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
s_zoom.c
62
c0 = imageX + (GLint) ((spanX - imageX) * ctx->Pixel.
ZoomX
);
63
c1 = imageX + (GLint) ((spanX + width - imageX) * ctx->Pixel.
ZoomX
);
110
unzoom_x(GLfloat
zoomX
, GLint imageX, GLint zx)
113
zx = imageX + (x - imageX) *
zoomX
;
114
zx - imageX = (x - imageX) *
zoomX
;
115
(zx - imageX) /
zoomX
= x - imageX;
118
if (
zoomX
< 0.0F)
120
x = imageX + (GLint) ((zx - imageX) /
zoomX
);
215
GLint j = unzoom_x(ctx->Pixel.
ZoomX
, imgX, x0 + i) - span->x;
225
GLint j = unzoom_x(ctx->Pixel.
ZoomX
, imgX, x0 + i) - span->x
[
all
...]
s_copypix.c
53
GLfloat
zoomX
, GLfloat zoomY)
55
if (
zoomX
== 1.0F && zoomY == 1.0F) {
61
if (srcx > (dstx + ((
zoomX
> 0.0F) ? (width *
zoomX
+ 1.0F) : 0.0F))) {
65
else if (srcx + width + 1.0F < dstx + ((
zoomX
> 0.0F) ? 0.0F : (width *
zoomX
))) {
93
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
105
ctx->Pixel.
ZoomX
, ctx->Pixel.ZoomY);
241
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
256
ctx->Pixel.
ZoomX
, ctx->Pixel.ZoomY)
[
all
...]
s_drawpix.c
218
ctx->Pixel.
ZoomX
!= 1.0f ||
275
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
321
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0f || ctx->Pixel.ZoomY != 1.0f;
426
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
640
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
s_zoom.c
62
c0 = imageX + (GLint) ((spanX - imageX) * ctx->Pixel.
ZoomX
);
63
c1 = imageX + (GLint) ((spanX + width - imageX) * ctx->Pixel.
ZoomX
);
110
unzoom_x(GLfloat
zoomX
, GLint imageX, GLint zx)
113
zx = imageX + (x - imageX) *
zoomX
;
114
zx - imageX = (x - imageX) *
zoomX
;
115
(zx - imageX) /
zoomX
= x - imageX;
118
if (
zoomX
< 0.0F)
120
x = imageX + (GLint) ((zx - imageX) /
zoomX
);
215
GLint j = unzoom_x(ctx->Pixel.
ZoomX
, imgX, x0 + i) - span->x;
225
GLint j = unzoom_x(ctx->Pixel.
ZoomX
, imgX, x0 + i) - span->x
[
all
...]
s_copypix.c
53
GLfloat
zoomX
, GLfloat zoomY)
55
if (
zoomX
== 1.0F && zoomY == 1.0F) {
61
if (srcx > (dstx + ((
zoomX
> 0.0F) ? (width *
zoomX
+ 1.0F) : 0.0F))) {
65
else if (srcx + width + 1.0F < dstx + ((
zoomX
> 0.0F) ? 0.0F : (width *
zoomX
))) {
93
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
105
ctx->Pixel.
ZoomX
, ctx->Pixel.ZoomY);
241
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
256
ctx->Pixel.
ZoomX
, ctx->Pixel.ZoomY)
[
all
...]
s_drawpix.c
218
ctx->Pixel.
ZoomX
!= 1.0f ||
275
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
321
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0f || ctx->Pixel.ZoomY != 1.0f;
426
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
615
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F;
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_pixel.c
113
if (ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F) {
brw_pixel_copy.c
142
if (ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F) {
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
intel_pixel.c
113
if (ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F) {
intel_pixel_copy.c
142
if (ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F) {
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
intel_pixel_copy.c
138
if (ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F) {
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
intel_pixel_copy.c
138
if (ctx->Pixel.
ZoomX
!= 1.0F || ctx->Pixel.ZoomY != 1.0F) {
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
pixel.c
50
if (ctx->Pixel.
ZoomX
== xfactor &&
55
ctx->Pixel.
ZoomX
= xfactor;
657
ctx->Pixel.
ZoomX
= 1.0;
image.c
616
assert(ctx->Pixel.
ZoomX
== 1.0F);
mtypes.h
730
GLfloat
ZoomX
, ZoomY;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
pixel.c
49
if (ctx->Pixel.
ZoomX
== xfactor &&
54
ctx->Pixel.
ZoomX
= xfactor;
657
ctx->Pixel.
ZoomX
= 1.0;
image.c
616
assert(ctx->Pixel.
ZoomX
== 1.0F);
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_cb_drawpixels.c
737
GLfloat
zoomX
, GLfloat zoomY,
919
x1 = x + width * ctx->Pixel.
ZoomX
;
972
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0 || ctx->Pixel.ZoomY != 1.0;
1337
if (ctx->Pixel.
ZoomX
== 1 && ctx->Pixel.ZoomY == 1 &&
1433
ctx->Pixel.
ZoomX
, ctx->Pixel.ZoomY,
1572
if (ctx->Pixel.
ZoomX
== 1.0 &&
1968
width, height, ctx->Pixel.
ZoomX
, ctx->Pixel.ZoomY,
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/x11/
xm_dd.c
318
ctx->Pixel.
ZoomX
== 1.0 && /* no zooming */
449
ctx->Pixel.
ZoomX
== 1.0 && /* no zooming */
576
ctx->Pixel.
ZoomX
== 1.0 && /* no zooming */
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/x11/
xm_dd.c
311
ctx->Pixel.
ZoomX
== 1.0 && /* no zooming */
442
ctx->Pixel.
ZoomX
== 1.0 && /* no zooming */
569
ctx->Pixel.
ZoomX
== 1.0 && /* no zooming */
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_cb_drawpixels.c
737
GLfloat
zoomX
, GLfloat zoomY,
906
x1 = x + width * ctx->Pixel.
ZoomX
;
952
const GLboolean zoom = ctx->Pixel.
ZoomX
!= 1.0 || ctx->Pixel.ZoomY != 1.0;
1382
ctx->Pixel.
ZoomX
, ctx->Pixel.ZoomY,
1522
ctx->Pixel.
ZoomX
== 1.0 &&
1838
width, height, ctx->Pixel.
ZoomX
, ctx->Pixel.ZoomY,
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/common/
meta.c
1856
const GLfloat dstX1 = dstX + width * ctx->Pixel.
ZoomX
;
1961
const GLint tileX = (GLint) (x + i * ctx->Pixel.
ZoomX
);
2196
const GLfloat x1 = x + width * ctx->Pixel.
ZoomX
;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/common/
meta.c
1913
const GLfloat dstX1 = dstX + width * ctx->Pixel.
ZoomX
;
1994
const GLint tileX = (GLint) (x + i * ctx->Pixel.
ZoomX
);
2229
const GLfloat x1 = x + width * ctx->Pixel.
ZoomX
;
/xsrc/external/mit/MesaLib/src/mesa/
get_hash.h
550
{ GL_ZOOM_X, CONTEXT_FLOAT(Pixel.
ZoomX
), NO_EXTRA },
/xsrc/external/mit/MesaLib.old/src/mesa/
get_hash.h
542
{ GL_ZOOM_X, CONTEXT_FLOAT(Pixel.
ZoomX
), NO_EXTRA },
Completed in 23 milliseconds
1
2
Indexes created Wed Jul 29 00:25:28 UTC 2026