Home | History | Annotate | Download | only in mac

Lines Matching refs:viewBounds

1045         HIRect viewBounds; // Placement and size for HIView
1071 HIViewGetBounds(_hiviewRef, &viewBounds);
1072 HIViewConvertRect(&viewBounds, _hiviewRef, NULL);
1081 _lastViewBounds.origin.x = viewBounds.origin.x;
1082 _lastViewBounds.origin.y = viewBounds.origin.y;
1083 _lastViewBounds.size.width = viewBounds.size.width;
1084 _lastViewBounds.size.height = viewBounds.size.height;
1098 if (_lastViewBounds.origin.x != viewBounds.origin.x ||
1099 _lastViewBounds.origin.y != viewBounds.origin.y ||
1100 _lastViewBounds.size.width != viewBounds.size.width ||
1101 _lastViewBounds.size.height != viewBounds.size.height)
1115 { (int)(0.5f + viewBounds.origin.x),
1116 (int)(0.5f + windowHeight - (viewBounds.origin.y + viewBounds.size.height)),
1117 viewBounds.size.width, viewBounds.size.height};
1129 glViewport(0.0f, 0.0f, (GLsizei) viewBounds.size.width, (GLsizei) viewBounds.size.height);
1135 _lastViewBounds.origin.x = viewBounds.origin.x;
1136 _lastViewBounds.origin.y = viewBounds.origin.y;
1137 _lastViewBounds.size.width = viewBounds.size.width;
1138 _lastViewBounds.size.height = viewBounds.size.height;
1250 HIRect viewBounds;
1251 HIViewGetBounds(_hiviewRef, &viewBounds);
1252 HIViewConvertRect(&viewBounds, _hiviewRef, NULL);
1255 { (int)(0.5f + viewBounds.origin.x),
1256 (int)(0.5f + _currentParentWindowHeight - (viewBounds.origin.y + viewBounds.size.height)),
1257 viewBounds.size.width, viewBounds.size.height};
1267 glViewport(0.0f, 0.0f, (GLsizei) viewBounds.size.width, (GLsizei) viewBounds.size.height);
1354 HIRect viewBounds; // Placemnt in the parent window and size.
1376 HIViewGetBounds(_hiviewRef, &viewBounds);
1378 HIViewConvertRect(&viewBounds, _hiviewRef, NULL);
1381 { (int)(0.5f + viewBounds.origin.x),
1382 (int)(0.5f + windowHeight - (viewBounds.origin.y + viewBounds.size.height)),
1383 viewBounds.size.width, viewBounds.size.height};
1396 glViewport(0.0f, 0.0f, (GLsizei) viewBounds.size.width, (GLsizei) viewBounds.size.height);