Lines Matching full:current
107 + if (!current->pitch) {
117 current -> w = width ;
118 current -> h = height ;
119 current -> pitch = SDL_CalculatePitch (current) ;
120 + if (!current->pitch) {
121 + current = NULL;
124 NX_ResizeImage (this, current, flags) ;
131 current->w = width;
132 current->h = height;
133 current->pitch = SDL_CalculatePitch(current);
134 + if (!current->pitch) {
144 current->w = width;
145 current->h = height;
146 current->pitch = SDL_CalculatePitch(current);
147 + if (!current->pitch) {
151 /* Alloc aligned mem for current->pixels */
152 s_pixels = memalign(16, current->h * current->pitch);
160 + if (!current->pitch) {
173 + if (!current->pitch) {
183 current->w = width;
184 current->h = height;
185 current->pitch = SDL_CalculatePitch(current);
186 + if (!current->pitch) {
187 + current = NULL;
190 if (X11_ResizeImage(this, current, flags) < 0) {
191 current = NULL;