Subversion Repositories Kolibri OS

Rev

Rev 5412 | Rev 8063 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5412 Rev 6108
Line 261... Line 261...
261
proc glopCallList uses eax ebx ecx edx edi, context:dword, p:dword
261
proc glopCallList uses eax ebx ecx edx edi, context:dword, p:dword
262
	mov edx,[context]
262
	mov edx,[context]
263
	mov ebx,[p]
263
	mov ebx,[p]
Line 264... Line 264...
264
 
264
 
265
	stdcall find_list,edx,[ebx+4]
265
	stdcall find_list,edx,[ebx+4]
266
	cmp eax,0
266
	or eax,eax
267
	jne @f
267
	jnz @f
268
		;if (eax == NULL) gl_fatal_error("list %d not defined",[ebx+4])
268
		;gl_fatal_error("list %d not defined",[ebx+4])
269
	@@:
269
	@@:
Line 270... Line 270...
270
	mov edi,[eax] ;edi = &GLList.first_op_buffer.ops
270
	mov edi,[eax] ;edi = &GLList.first_op_buffer.ops
271
 
271